diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-09 17:43:28 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-09 17:43:28 +0000 |
commit | 2e976872631d11cdb9b300242e83613ae3f1009f (patch) | |
tree | 9e1144c7e7378549cfefac2802fc9e230ab110c0 /cpp/newmakebindist.py | |
parent | fixes for third party libraries (diff) | |
download | ice-2e976872631d11cdb9b300242e83613ae3f1009f.tar.bz2 ice-2e976872631d11cdb9b300242e83613ae3f1009f.tar.xz ice-2e976872631d11cdb9b300242e83613ae3f1009f.zip |
fixes for AIX
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index dd0bc67ffaf..a5a4086ad60 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -360,7 +360,7 @@ def getDBfiles(dbLocation): pipe_stdin.close() pipe_stdout.close() fileList.extend(lines) - if getPlatform == 'aix': + if getPlatform() == 'aix': pipe_stdin, pipe_stdout = os.popen2('find lib -name "*.a" -type f') lines = pipe_stdout.readlines() pipe_stdin.close() @@ -663,7 +663,7 @@ def main(): binaries.extend(glob.glob(installDir + '/Ice-' + version + '/lib/*' + shlibExtensions(version, soVersion)[0])) cwd = os.getcwd() os.chdir(installDir) - if not getPlatform() in ['linux', 'aix']: + if not getPlatform() in ['linux']: # # I need to get third party libraries. # |