summaryrefslogtreecommitdiff
path: root/distribution/bin/makebindist.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-11-27 10:31:51 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-11-27 10:31:51 +0100
commit88dbca3eb3bab4526db768dacd3abb77bb5858ea (patch)
tree0d13a0765c7e664741baa6dd3b5e10ff569f0d48 /distribution/bin/makebindist.py
parentMinor OS X DistUtils.py fix (diff)
downloadice-88dbca3eb3bab4526db768dacd3abb77bb5858ea.tar.bz2
ice-88dbca3eb3bab4526db768dacd3abb77bb5858ea.tar.xz
ice-88dbca3eb3bab4526db768dacd3abb77bb5858ea.zip
Fixed building of Ice for Python with makebindist.py
Diffstat (limited to 'distribution/bin/makebindist.py')
-rwxr-xr-xdistribution/bin/makebindist.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/distribution/bin/makebindist.py b/distribution/bin/makebindist.py
index b8d270c9e58..54c488634e3 100755
--- a/distribution/bin/makebindist.py
+++ b/distribution/bin/makebindist.py
@@ -183,7 +183,10 @@ for l in buildLanguages:
if l != "java":
makeOptions = platform.getMakeOptions() + " " + platform.getMakeEnvs(version, l) + " prefix=" + buildDir
- buildCmd = "gmake -C src " + makeOptions
+ if l != "py":
+ buildCmd = "gmake -C src " + makeOptions
+ else:
+ buildCmd = "gmake -C modules " + makeOptions
installCmd = "gmake " + makeOptions + " install"
print "Building with " + buildCmd