diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-02 21:35:59 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-02 21:35:59 +0000 |
commit | 522972282c2a9fe7985fd8d559b3e7740a082e41 (patch) | |
tree | e665201cf7b93cc7870bc20cdd2d86e3a25ac549 /cpp/makebindist.py | |
parent | 3.2b updates (diff) | |
download | ice-522972282c2a9fe7985fd8d559b3e7740a082e41.tar.bz2 ice-522972282c2a9fe7985fd8d559b3e7740a082e41.tar.xz ice-522972282c2a9fe7985fd8d559b3e7740a082e41.zip |
suse fix
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index e443c133af6..3ef51f857af 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -955,15 +955,16 @@ def main(): # sourceTarBalls = [ ('ice', 'Ice-%s' % version, ''), ('icephp','IcePHP-%s' % version, 'php'), - ('icej','IceJ-%s-java2' % version, 'j'), - ('icerb', 'IceRuby-%s' % version, 'rb')] + ('icej','IceJ-%s-java2' % version, 'j')] if not getPlatform() in ['aix', 'solaris', 'hpux']: sourceTarBalls.append(('icepy','IcePy-' + version, 'py')) if getPlatform().startswith("linux"): sourceTarBalls.append(('icecs','IceCS-' + version, 'cs')) - + if os.system('which ruby 2>/dev/null') == 0: + sourceTarBalls.append(('icerb', 'IceRuby-%s' % version, 'rb')) + os.environ['ICE_HOME'] = installDir + '/Ice-' + version currentLibraryPath = None try: |