diff options
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index c1c0938b9e1..72d139301ba 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -955,10 +955,12 @@ def main(): # Ice must be first or building the other source distributions will fail. # sourceTarBalls = [ ('ice', 'Ice-%s' % version, ''), - ('icephp','IcePHP-%s' % version, 'php'), ('icej','IceJ-%s-java2' % version, 'j')] if not getPlatform() in ['aix', 'solaris', 'hpux']: + sourceTarBalls.append(('icephp','IcePHP-' + version, 'php')) + + if not getPlatform() in ['aix', 'solaris', 'hpux']: sourceTarBalls.append(('icepy','IcePy-' + version, 'py')) if getPlatform().startswith("linux"): @@ -997,7 +999,7 @@ def main(): # # Package up demo distribution. # - if getPlatform() != 'hpux' and getPlatform() != 'sun': + if getPlatform() != 'hpux' and getPlatform() != 'solaris': toCollect = list(sourceTarBalls) toCollect.append(('icevb', 'IceVB-' + version, 'vb')) for cvs, tarball, demoDir in toCollect: |