diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-11-27 10:31:51 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-11-27 10:31:51 +0100 |
commit | 88dbca3eb3bab4526db768dacd3abb77bb5858ea (patch) | |
tree | 0d13a0765c7e664741baa6dd3b5e10ff569f0d48 /distribution/bin/makebindist.py | |
parent | Minor OS X DistUtils.py fix (diff) | |
download | ice-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-x | distribution/bin/makebindist.py | 5 |
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 |