fixed bug #1234283 - InstallLib fails on paths with spaces
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4162 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
e28fc15376
commit
94cd469469
1 changed files with 3 additions and 3 deletions
|
@ -186,7 +186,7 @@ Var __INSTALLLLIB_SESSIONGUID
|
|||
;------------------------
|
||||
;Get version information
|
||||
|
||||
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" D ${LOCALFILE}'
|
||||
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" D "${LOCALFILE}"'
|
||||
!include "${NSISDIR}\Bin\LibraryLocal.nsh"
|
||||
|
||||
!ifdef LIBRARY_VERSION_FILENOTFOUND
|
||||
|
@ -214,7 +214,7 @@ Var __INSTALLLLIB_SESSIONGUID
|
|||
|
||||
!else
|
||||
|
||||
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" T ${LOCALFILE}'
|
||||
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" T "${LOCALFILE}"'
|
||||
!include "${NSISDIR}\Bin\LibraryLocal.nsh"
|
||||
|
||||
!ifdef LIBRARY_VERSION_FILENOTFOUND
|
||||
|
@ -243,7 +243,7 @@ Var __INSTALLLLIB_SESSIONGUID
|
|||
|
||||
!ifdef INSTALLLIB_LIBTYPE_TLB | INSTALLLIB_LIBTYPE_REGDLLTLB
|
||||
|
||||
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" T ${LOCALFILE}'
|
||||
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" T "${LOCALFILE}"'
|
||||
!include "${NSISDIR}\Bin\LibraryLocal.nsh"
|
||||
|
||||
!endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue