[Commits] (morgen) Had the order wrong for setup.py arguments

commits at osafoundation.org commits at osafoundation.org
Thu Apr 15 10:00:17 PDT 2004


Commit by: morgen
Modified files:
internal/wx/wxPython-2.5/__hardhat__.py 1.13 1.14

Log message:
Had the order wrong for setup.py arguments


ViewCVS links:
http://cvs.osafoundation.org/index.cgi/internal/wx/wxPython-2.5/__hardhat__.py.diff?r1=text&tr1=1.13&r2=text&tr2=1.14

Index: internal/wx/wxPython-2.5/__hardhat__.py
diff -u internal/wx/wxPython-2.5/__hardhat__.py:1.13 internal/wx/wxPython-2.5/__hardhat__.py:1.14
--- internal/wx/wxPython-2.5/__hardhat__.py:1.13	Wed Apr 14 17:45:58 2004
+++ internal/wx/wxPython-2.5/__hardhat__.py	Thu Apr 15 10:00:15 2004
@@ -132,13 +132,14 @@
          'BUILD_BASE=build_%s' % version,
          'WX_CONFIG='+buildenv['root']+'/%s/bin/wx-config' % version,
          'build',
-         'install',
         ]
         if version == "debug":
             buildOptions.append("--debug")
         if buildenv['os'] == "posix":
             buildOptions.append("WXPORT=gtk2")
             buildOptions.append("UNICODE=1")
+
+        buildOptions.append("install")
 
         hardhatlib.executeCommand(buildenv, info['name'], buildOptions,
          "Building and Installing wxPython")



More information about the Commits mailing list