diff options
author | Brent Eagles <brent@zeroc.com> | 2005-10-12 14:32:16 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-10-12 14:32:16 +0000 |
commit | c8996a82b570878883faa1db2a5d72229bb61c75 (patch) | |
tree | b2eff238a145e985a7b644731b91fc954332e796 /cpp/makebindist.py | |
parent | fix some typos (diff) | |
download | ice-c8996a82b570878883faa1db2a5d72229bb61c75.tar.bz2 ice-c8996a82b570878883faa1db2a5d72229bb61c75.tar.xz ice-c8996a82b570878883faa1db2a5d72229bb61c75.zip |
64 bit fixes
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index e02afe359e1..74b4569a636 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -903,7 +903,7 @@ def main(): ('icephp','IcePHP-' + version, 'php'), ('icej','IceJ-' + version, 'j') ] - if getPlatform() <> 'aix': + if not getPlatform() in ['aix', 'linux64']: sourceTarBalls.append(('icepy','IcePy-' + version, 'py')) if getPlatform() == 'linux': |