System.Data.SQLite

Check-in [72b3ddb5fd]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix issue where parens in a command would mess up IF-THEN parsing in batch file.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 72b3ddb5fd25a00aa8c3db08310b02728d92fc8f
User & Date: shaneh 2011-04-13 02:00:06.109
Context
2011-04-13
02:46
Update for release. check-in: 425f258bee user: shaneh tags: trunk
02:00
Fix issue where parens in a command would mess up IF-THEN parsing in batch file. check-in: 72b3ddb5fd user: shaneh tags: trunk
2011-04-12
20:59
Further simplify native RC file, removing MFC-isms. check-in: f045d27f35 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Setup/bake.bat.
14
15
16
17
18
19
20
21
22
23

24
25

26
27
28
29
30
31
32
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" (
  SET PATH=%ProgramFiles%\Inno Setup 5;%PATH%
) ELSE (

  SET PATH=%ProgramFiles(x86)%\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.







|
|
|
>
|
<
>







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.