diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-10 03:34:17 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-10 03:34:17 +0000 |
commit | 5e23d3b66454f484bcb5b601862db0662a68c5ca (patch) | |
tree | a621b4eddfd797ec5c80b33da5743a31967a2256 /cpp/newmakebindist.py | |
parent | doc fix (diff) | |
download | ice-5e23d3b66454f484bcb5b601862db0662a68c5ca.tar.bz2 ice-5e23d3b66454f484bcb5b601862db0662a68c5ca.tar.xz ice-5e23d3b66454f484bcb5b601862db0662a68c5ca.zip |
fixing Berkeley DB pickup for AIX
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 94f105801ba..3a72ec57e6c 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -365,13 +365,8 @@ def getDBfiles(dbLocation): pipe_stdin.close() pipe_stdout.close() fileList.extend(lines) - if getPlatform() == 'aix': - pipe_stdin, pipe_stdout = os.popen2('find lib -name "*.a" -type f') - lines = pipe_stdout.readlines() - pipe_stdin.close() - pipe_stdout.close() - fileList.extend(lines) + fileList.append('lib/libdb_cxx.so') os.chdir(cwd) return fileList |