From: Robin Dunn <robin@alldunn.com> Date: Fri, 11 Jun 2004 01:16:51 +0000 (+0000) Subject: corrected the .pyd names X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/939b57893e3315c9057223eef442d595141c7611 corrected the .pyd names git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/distrib/make_installer.py b/wxPython/distrib/make_installer.py index c78854abaa..4f9eb5e2a6 100644 --- a/wxPython/distrib/make_installer.py +++ b/wxPython/distrib/make_installer.py @@ -80,11 +80,11 @@ Source: "distrib\msw\MSVCP60.dll"; DestDir: "{code:GetPythonDir}"; CopyMod Source: "%(WXDIR)s\lib\vc_dll\wx*%(WXDLLVER)s_*.dll"; DestDir: "{app}\wx"; Components: core %(MSLU)s -Source: "wx\_core.pyd"; DestDir: "{app}\wx"; Components: core -Source: "wx\_gdi.pyd"; DestDir: "{app}\wx"; Components: core -Source: "wx\_windows.pyd"; DestDir: "{app}\wx"; Components: core -Source: "wx\_controls.pyd"; DestDir: "{app}\wx"; Components: core -Source: "wx\_misc.pyd"; DestDir: "{app}\wx"; Components: core +Source: "wx\_core_.pyd"; DestDir: "{app}\wx"; Components: core +Source: "wx\_gdi_.pyd"; DestDir: "{app}\wx"; Components: core +Source: "wx\_windows_.pyd"; DestDir: "{app}\wx"; Components: core +Source: "wx\_controls_.pyd"; DestDir: "{app}\wx"; Components: core +Source: "wx\_misc_.pyd"; DestDir: "{app}\wx"; Components: core Source: "wx\_calendar.pyd"; DestDir: "{app}\wx"; Components: core Source: "wx\_grid.pyd"; DestDir: "{app}\wx"; Components: core Source: "wx\_html.pyd"; DestDir: "{app}\wx"; Components: core @@ -101,7 +101,7 @@ Source: "wx\_xrc.pyd"; DestDir: "{app}\wx"; Components: Source: "wx\*.py"; DestDir: "{app}\wx"; Components: core Source: "wx\build\*.py"; DestDir: "{app}\wx\build"; Components: core Source: "wx\lib\*.py"; DestDir: "{app}\wx\lib"; Components: core -Source: "wx\lib\*.wdr"; DestDir: "{app}\wx\lib"; Components: core +;;Source: "wx\lib\*.wdr"; DestDir: "{app}\wx\lib"; Components: core Source: "wx\lib\colourchooser\*.py"; DestDir: "{app}\wx\lib\colourchooser"; Components: core Source: "wx\lib\editor\*.py"; DestDir: "{app}\wx\lib\editor"; Components: core Source: "wx\lib\editor\*.txt"; DestDir: "{app}\wx\lib\editor"; Components: core @@ -434,7 +434,7 @@ def find_DLLs(): WXDLLVER = PYTHONVER = None - proc = os.popen(r"dumpbin /imports wx\_core.pyd", "r") + proc = os.popen(r"dumpbin /imports wx\_core_.pyd", "r") lines = proc.readlines() proc.close() for line in lines: @@ -530,7 +530,10 @@ def main(): f.write(IFS_Template % vars()) f.close() - os.system(ISCC % (os.environ['TOOLS'], ISSFILE)) + TOOLS = os.environ['TOOLS'] + if TOOLS.startswith('/cygdrive'): + TOOLS = r"c:\TOOLS" # temporary hack until I convert everything over to bash + os.system(ISCC % (TOOLS, ISSFILE)) if not KEEP_TEMPS: time.sleep(1)