diff options
author | Brent Eagles <brent@zeroc.com> | 2006-07-11 21:50:34 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-07-11 21:50:34 +0000 |
commit | 930c43cc7edbb527ff4df5c790d7ca52627b39b7 (patch) | |
tree | a8d7bf5cc9dc0aa6682a4daf942c26dadc370f58 /cpp/makebindist.py | |
parent | fixing placement of debug dlls to be available independently of development (diff) | |
download | ice-930c43cc7edbb527ff4df5c790d7ca52627b39b7.tar.bz2 ice-930c43cc7edbb527ff4df5c790d7ca52627b39b7.tar.xz ice-930c43cc7edbb527ff4df5c790d7ca52627b39b7.zip |
removing openssl from hpux and fixing broken rpms
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 4ead611ff4d..369672ee8b0 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -1184,15 +1184,15 @@ def main(): if getPlatform() == 'macosx': copyExpatFiles(os.environ['EXPAT_HOME'], version) - if getPlatform() == 'hpux': - ssl = os.environ['OPENSSL_HOME'] - shutil.copy('%s/bin/openssl' % ssl, 'Ice-%s/bin' % version) - runprog('cp -R ' + ssl + '/include Ice-' + version) - runprog('cp -R ' + ssl + '/lib Ice-' + version) - runprog('rm -rf Ice-' + version + '/lib/libfips*') - runprog('rm -rf Ice-' + version + '/lib/engines') - runprog('rm -rf Ice-' + version + '/lib/pkgconfig') - runprog('rm -f Ice-' + version + '/lib/*.a') +# if getPlatform() == 'hpux': +# ssl = os.environ['OPENSSL_HOME'] +# shutil.copy('%s/bin/openssl' % ssl, 'Ice-%s/bin' % version) +# runprog('cp -R ' + ssl + '/include Ice-' + version) +# runprog('cp -R ' + ssl + '/lib Ice-' + version) +# runprog('rm -rf Ice-' + version + '/lib/libfips*') +# runprog('rm -rf Ice-' + version + '/lib/engines') +# runprog('rm -rf Ice-' + version + '/lib/pkgconfig') +# runprog('rm -f Ice-' + version + '/lib/*.a') uname = readcommand('uname') platformSpecificFiles = [ 'README', 'SOURCES', 'THIRD_PARTY_LICENSE' ] |