Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Escaping change for path setting for bake.bat didn't work. Put back goto construct. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fed833ea6e0d9274c20a6a62049cf71a |
User & Date: | shaneh 2011-04-13 20:54:44.238 |
Context
2011-04-13
| ||
21:05 | Default to NETFX20 for 2010 setup too. check-in: 74f8e73e35 user: shaneh tags: trunk | |
20:54 | Escaping change for path setting for bake.bat didn't work. Put back goto construct. check-in: fed833ea6e user: shaneh tags: trunk | |
20:53 | More comments on build instructions. check-in: 9c3b14681c user: shaneh tags: trunk | |
Changes
Changes to Setup/bake.bat.
︙ | ︙ | |||
14 15 16 17 18 19 20 | REM SET _ECHO=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* | | | | > | < > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | REM SET _ECHO=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* IF "%PROCESSOR_ARCHITECTURE%"=="x86" GOTO set_path_32 SET PATH=%ProgramFiles(x86)%\Inno Setup 5;%PATH% GOTO set_path_done :set_path_32 SET PATH=%ProgramFiles%\Inno Setup 5;%PATH% :set_path_done %_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. |
︙ | ︙ |
Changes to Setup/build.bat.
︙ | ︙ | |||
8 9 10 11 12 13 14 | :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SETLOCAL REM SET _ECHO=ECHO | | | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SETLOCAL REM SET _ECHO=ECHO 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 ROOT=%~dp0\.. SET ROOT=%ROOT:\\=\% %_VECHO% Root = '%ROOT%' |
︙ | ︙ |