[ctypes-commit] ctypes/sandbox/tools/codegen setup_gccxml.iss,1.1,1.2
Brought to you by:
theller
|
From: Thomas H. <th...@us...> - 2005-03-15 11:11:11
|
Update of /cvsroot/ctypes/ctypes/sandbox/tools/codegen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29087 Modified Files: setup_gccxml.iss Log Message: vcInstall.exe did not work, because the working directory was not specified. So it couldn't find patch.exe. Index: setup_gccxml.iss =================================================================== RCS file: /cvsroot/ctypes/ctypes/sandbox/tools/codegen/setup_gccxml.iss,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** setup_gccxml.iss 17 Dec 2004 09:45:36 -0000 1.1 --- setup_gccxml.iss 15 Mar 2005 11:10:58 -0000 1.2 *************** *** 22,25 **** --- 22,26 ---- Source: "C:\sf\gccxml\GCC_XML\VcInstall\vcCat.exe"; DestName: cat.exe; DestDir: "{app}\install"; Flags: ignoreversion Source: "C:\sf\gccxml\GCC_XML\VcInstall\vcPatch.exe"; DestName: patch.exe; DestDir: "{app}\install"; Flags: ignoreversion + Source: "config"; DestDir: "{app}\bin"; [Icons] *************** *** 27,31 **** [Run] ! Filename: "{app}\install\vcInstall.exe"; Parameters: "{app}\install {app}\bin"; Check: CreateConfig({app}\bin\config) [UninstallDelete] --- 28,32 ---- [Run] ! Filename: "{app}\install\vcInstall.exe"; WorkingDir: "{app}\install"; Parameters: ". ..\bin" [UninstallDelete] *************** *** 37,46 **** [Registry] Root: HKLM; Subkey: "Software\gccxml"; ValueType: string; ValueName: "loc"; ValueData: {app}; Flags: uninsdeletekey - - [Code] - function CreateConfig(filename: String) : Boolean; - begin - SaveStringToFile(filename, 'GCCXML_COMPILER="cl"', false); - Result := true; - end; - --- 38,39 ---- |