diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-02-09 14:40:33 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-02-09 14:40:33 +0000 |
commit | d1573988b3270c9dcbcd616a1f3919b6aa0d6a08 (patch) | |
tree | b75c368e93a24dfe42ae5de8deba5dd5254c79e6 /cpp/makebindist.py | |
parent | Fixed IcePathc2 build (diff) | |
download | ice-d1573988b3270c9dcbcd616a1f3919b6aa0d6a08.tar.bz2 ice-d1573988b3270c9dcbcd616a1f3919b6aa0d6a08.tar.xz ice-d1573988b3270c9dcbcd616a1f3919b6aa0d6a08.zip |
Mac OS X fixes
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 72d139301ba..5e5ddc90058 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -957,7 +957,7 @@ def main(): sourceTarBalls = [ ('ice', 'Ice-%s' % version, ''), ('icej','IceJ-%s-java2' % version, 'j')] - if not getPlatform() in ['aix', 'solaris', 'hpux']: + if not getPlatform() in ['aix', 'solaris', 'hpux', 'macosx']: sourceTarBalls.append(('icephp','IcePHP-' + version, 'php')) if not getPlatform() in ['aix', 'solaris', 'hpux']: @@ -999,7 +999,7 @@ def main(): # # Package up demo distribution. # - if getPlatform() != 'hpux' and getPlatform() != 'solaris': + if getPlatform() != 'hpux' and getPlatform() != 'solaris' and getPlatform() != 'macosx': toCollect = list(sourceTarBalls) toCollect.append(('icevb', 'IceVB-' + version, 'vb')) for cvs, tarball, demoDir in toCollect: |