diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-09 23:35:35 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-09 23:35:35 +0000 |
commit | 5ed3e2a437e1984ff9630a58600817d535562e41 (patch) | |
tree | aebb573e7287aab929cb407dacb0775c2427646f /cpp/newmakebindist.py | |
parent | dos2unix fix (diff) | |
download | ice-5ed3e2a437e1984ff9630a58600817d535562e41.tar.bz2 ice-5ed3e2a437e1984ff9630a58600817d535562e41.tar.xz ice-5ed3e2a437e1984ff9630a58600817d535562e41.zip |
fix permission copying
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 c85225c3c10..94f105801ba 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -721,8 +721,8 @@ def main(): if getPlatform() == 'hpux': ssl = buildEnvironment['OPENSSL_HOME'] os.system('cp ' + ssl + '/bin/* Ice-' + version + '/bin') - os.system('cp -pR ' + ssl + '/include Ice-' + version) - os.system('cp -pR ' + ssl + '/lib/* Ice-' + version + '/lib') + os.system('cp -R ' + ssl + '/include Ice-' + version) + os.system('cp -R ' + ssl + '/lib/* Ice-' + version + '/lib') os.system('rm -rf Ice-' + version + '/lib/libfips*') uname = getuname() |