diff options
author | Brent Eagles <brent@zeroc.com> | 2007-02-20 19:06:54 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-02-20 19:06:54 +0000 |
commit | 6f28ae2c4a50bf15451a1d8593c2c089035638c9 (patch) | |
tree | 47663c198b5bdafcce65f371b51483101e193879 /cpp/install/common/makewindist.py | |
parent | Fixed bug 1883 (diff) | |
download | ice-6f28ae2c4a50bf15451a1d8593c2c089035638c9.tar.bz2 ice-6f28ae2c4a50bf15451a1d8593c2c089035638c9.tar.xz ice-6f28ae2c4a50bf15451a1d8593c2c089035638c9.zip |
fixing python for VC 80
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index bda15774203..4b813de5255 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -302,7 +302,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): runprog("nmake /f Makefile.mak") - # # Now run the release mode builds. # @@ -325,7 +324,7 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): os.chdir(os.path.join(iceHome, "demo")) runprog("nmake /f Makefile.mak clean") - if installVersion == "vc71": + if installVersion == "vc80": # # Ice for Python # @@ -337,6 +336,7 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): print "Building in " + os.getcwd() + "..." setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True) runprog("nmake /f Makefile.mak") + if installVersion == "vc60": # |