From 21d72bba17d23a0ff2bed2a20819d81cc219664a Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 16 Apr 2005 18:26:30 +0000 Subject: [PATCH] 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 --- Include/Library.nsh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Include/Library.nsh b/Include/Library.nsh index 7252ea46..ca083060 100644 --- a/Include/Library.nsh +++ b/Include/Library.nsh @@ -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