use LibraryLocal.exe from Bin directory

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3968 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-04-16 18:26:30 +00:00
parent cce48a168b
commit 21d72bba17

View file

@ -246,8 +246,8 @@ Example:
;------------------------
;Get version information
!execute '"${NSISDIR}\Contrib\Library\LibraryLocal\LibraryLocal.exe" D ${LOCALFILE}'
!include "${NSISDIR}\Contrib\Library\LibraryLocal\LibraryLocal.nsh"
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" D ${LOCALFILE}'
!include "${NSISDIR}\Bin\LibraryLocal.nsh"
!ifdef LIBRARY_VERSION_FILENOTFOUND
!error "InstallLib: The library ${LOCALFILE} could not be found."
@ -274,8 +274,8 @@ Example:
!else
!execute '"${NSISDIR}\Contrib\LIBRARY\LIBRARYLocal\LibraryLocal.exe" T ${LOCALFILE}'
!include "${NSISDIR}\Contrib\LIBRARY\LIBRARYLocal\LibraryLocal.nsh"
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" T ${LOCALFILE}'
!include "${NSISDIR}\Bin\LibraryLocal.nsh"
!ifdef LIBRARY_VERSION_FILENOTFOUND
!error "InstallLib: The library ${LOCALFILE} could not be found."
@ -303,8 +303,8 @@ Example:
!ifdef INSTALLLIB_LIBTYPE_TLB | INSTALLLIB_LIBTYPE_REGDLLTLB
!execute '"${NSISDIR}\Contrib\LIBRARY\LIBRARYLocal\LibraryLocal.exe" T ${LOCALFILE}'
!include "${NSISDIR}\Contrib\LIBRARY\LIBRARYLocal\LibraryLocal.nsh"
!execute '"${NSISDIR}\Bin\LibraryLocal.exe" T ${LOCALFILE}'
!include "${NSISDIR}\Bin\LibraryLocal.nsh"
!endif