fixed some paths in build scripts

fixed yesterday's fix


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-06-13 01:35:19 +00:00
parent 085ad68651
commit 0815db2686
7 changed files with 34 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ will be created.
import sys, os, string
KEEP_TEMPS = 0
ISCC = r"D:\TOOLS\InnoSetup2Ex\ISCC.exe %s"
ISCC = r"%s\InnoSetup2Ex\ISCC.exe %s"
#----------------------------------------------------------------------
@@ -330,7 +330,7 @@ def main():
f.write(IFS_Template % vars())
f.close()
os.system(ISCC % ISSFILE)
os.system(ISCC % (os.environ['TOOLS'], ISSFILE))
if not KEEP_TEMPS:
os.remove(ISSFILE)