diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-13 00:15:51 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-13 00:15:51 +0000 |
commit | 336266616f41c8f48890a6f4ac136069344bd61e (patch) | |
tree | d2ec7613b2b110e8f8cbffa8ccb5e900ecc1949b /cpp/makebindist.py | |
parent | Fixed bugs #1805 and #1807 (diff) | |
download | ice-336266616f41c8f48890a6f4ac136069344bd61e.tar.bz2 ice-336266616f41c8f48890a6f4ac136069344bd61e.tar.xz ice-336266616f41c8f48890a6f4ac136069344bd61e.zip |
More #1807
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 1435f13f7c8..ba6b04a9071 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -93,14 +93,14 @@ def getPlatform(): redhat = os.system('test -f /etc/redhat-release') if readcommand('uname -p') == 'x86_64': if redhat == 0: - return 'rhel.x86_64' + return 'rhel-x86_64' else: - return 'sles.x86_64' + return 'sles-x86_64' else: if redhat == 0: - return 'rhel.i386' + return 'rhel-i386' else: - return 'sles.i586' + return 'sles-i586' elif sys.platform.startswith('sunos'): return 'solaris' elif sys.platform.startswith('hp'): |