Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add missing diagnostic message for the PATH variable. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f43bb46d454e803b1a072869beca7b34 |
User & Date: | mistachkin 2011-04-09 23:06:52.179 |
Context
2011-04-09
| ||
23:43 | Make sure InnoSetup install can be found by the setup baking tools on x64 machines. check-in: 99457d88c0 user: mistachkin tags: trunk | |
23:06 | Add missing diagnostic message for the PATH variable. check-in: f43bb46d45 user: mistachkin tags: trunk | |
23:03 | Remove hard-coded assumption of VC 2008/2010 SP1-level runtimes. check-in: ac588533ce user: mistachkin tags: trunk | |
Changes
Changes to Setup/bake.bat.
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* SET PATH=%ProgramFiles%\Inno Setup 5;%PATH% %_ECHO% ISCC.exe SQLite.iss "/dAppId=%APPID%" "/dAppVersion=%VERSION%" "/dAppPublicKey=%PUBLICKEY%" "/dAppURL=%URL%" "/dIsNetFx2=%ISNETFX2%" "/dVcRuntime=%VCRUNTIME%" "/dAppPlatform=%PLATFORM%" "/dAppProcessor=%PROCESSOR%" "/dYear=%YEAR%" IF %ERRORLEVEL% NEQ 0 ( ECHO Failed to compile setup. GOTO errors ) | > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* SET PATH=%ProgramFiles%\Inno Setup 5;%PATH% %_VECHO% Path = '%PATH%' %_ECHO% ISCC.exe SQLite.iss "/dAppId=%APPID%" "/dAppVersion=%VERSION%" "/dAppPublicKey=%PUBLICKEY%" "/dAppURL=%URL%" "/dIsNetFx2=%ISNETFX2%" "/dVcRuntime=%VCRUNTIME%" "/dAppPlatform=%PLATFORM%" "/dAppProcessor=%PROCESSOR%" "/dYear=%YEAR%" IF %ERRORLEVEL% NEQ 0 ( ECHO Failed to compile setup. GOTO errors ) |
︙ | ︙ |