diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-01 14:47:40 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-01 14:47:40 +0000 |
commit | 9331a66b13debc57a6e040f9430707a74a6af621 (patch) | |
tree | 59f3ca007a732550466d01597cf8bbdf16a09f0c /cpp/newmakebindist.py | |
parent | use writeBlob instead of memcpy (diff) | |
download | ice-9331a66b13debc57a6e040f9430707a74a6af621.tar.bz2 ice-9331a66b13debc57a6e040f9430707a74a6af621.tar.xz ice-9331a66b13debc57a6e040f9430707a74a6af621.zip |
remove IcePy library from AIX binary distribution
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 18135fa789f..3121303b066 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -103,6 +103,10 @@ def extractDemos(buildDir, version, distro, demoDir): os.chdir(buildDir + "/demotree") os.system("gzip -dc ../sources/" + distro + ".tar.gz | tar xf - " + distro + "/demo " + distro + "/config " \ + distro + "/certs") + if demoDir == "": + os.system("gzip -dc ../sources/" + distro + ".tar.gz | tar xf - " + distro + "/install/rpm/README.DEMOS") + shutil.move(distro + "/install/rpm/README.DEMOS", buildDir + "/Ice-" + version + "-demos/README.DEMOS") + shutil.move(distro + "/demo", buildDir + "/Ice-" + version + "-demos/demo" + demoDir) # @@ -509,8 +513,10 @@ def main(): # Ice must be first or building the other source distributions will fail. # sourceTarBalls = [ ("ice", "Ice-" + version, ""), - ("icej","IceJ-" + version, "j"), - ("icepy","IcePy-" + version, "py") ] + ("icej","IceJ-" + version, "j") ] + + if getPlatform() <> "aix": + sourceTarBalls.append(("icepy","IcePy-" + version, "py")) if getPlatform() == "linux": sourceTarBalls.append(("icecs","IceCS-" + version, "cs")) |