summaryrefslogtreecommitdiff
path: root/cpp/newmakebindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2005-03-09 23:35:35 +0000
committerBrent Eagles <brent@zeroc.com>2005-03-09 23:35:35 +0000
commit5ed3e2a437e1984ff9630a58600817d535562e41 (patch)
treeaebb573e7287aab929cb407dacb0775c2427646f /cpp/newmakebindist.py
parentdos2unix fix (diff)
downloadice-5ed3e2a437e1984ff9630a58600817d535562e41.tar.bz2
ice-5ed3e2a437e1984ff9630a58600817d535562e41.tar.xz
ice-5ed3e2a437e1984ff9630a58600817d535562e41.zip
fix permission copying
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-xcpp/newmakebindist.py4
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()