summaryrefslogtreecommitdiff
path: root/cpp/install/common/makewindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2006-07-11 02:51:47 +0000
committerBrent Eagles <brent@zeroc.com>2006-07-11 02:51:47 +0000
commitb1d684bda1d78dea1b2639dcd015c030b9b717b9 (patch)
tree830efd56d113dafda27342d40eb1cdedaad04736 /cpp/install/common/makewindist.py
parentFixed bug #1203 (diff)
downloadice-b1d684bda1d78dea1b2639dcd015c030b9b717b9.tar.bz2
ice-b1d684bda1d78dea1b2639dcd015c030b9b717b9.tar.xz
ice-b1d684bda1d78dea1b2639dcd015c030b9b717b9.zip
fix several installer bugs
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-xcpp/install/common/makewindist.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py
index d7a5a69243a..4b14fd10f94 100755
--- a/cpp/install/common/makewindist.py
+++ b/cpp/install/common/makewindist.py
@@ -243,6 +243,18 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
if installVersion == "vc80":
+
+ #
+ # Ice for Python
+ #
+ pythonHome = os.environ['PYTHON_HOME']
+ prependEnvPath('LIB', os.path.join(pythonHome, "libs"))
+ prependEnvPath('INCLUDE', os.path.join(pythonHome, "include"))
+
+ os.chdir(os.path.join(sourcesDir, "IcePy-" + sourcesVersion))
+ print "Building in " + os.getcwd() + "..."
+ runprog("devenv all.sln /useenv /build Release")
+ elif installVersion == "vc60":
#
# Ice for PHP
#
@@ -264,19 +276,7 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
os.chdir(os.path.join(sourcesDir, "IcePHP-" + sourcesVersion))
print "Building in " + os.getcwd() + "..."
- runprog("devenv icephp.sln /useenv /build Release")
-
- #
- # Ice for Python
- #
- pythonHome = os.environ['PYTHON_HOME']
- prependEnvPath('LIB', os.path.join(pythonHome, "libs"))
- prependEnvPath('INCLUDE', os.path.join(pythonHome, "include"))
-
- os.chdir(os.path.join(sourcesDir, "IcePy-" + sourcesVersion))
- print "Building in " + os.getcwd() + "..."
- runprog("devenv all.sln /useenv /build Release")
- elif installVersion == "vc60":
+ runprog('msdev icephp.dsw /useenv /make "php_ice - Win32 Release"')
#
# Ice for C++
#