diff options
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 9b1647d27c5..9bcbdc3b2b9 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -790,9 +790,11 @@ def main(): # sourceTarBalls = [ ("ice", "Ice-" + version, ""), ("icej","IceJ-" + version, "j"), - ("icecs","IceCS-" + version, "cs"), ("icepy","IcePy-" + version, "py") ] + if getPlatform() == "linux": + sourceTarBalls.append(("icecs","IceCS-" + version, "cs")) + os.environ['ICE_HOME'] = installDir + "/Ice-" + version currentLibraryPath = None try: |