diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-06-30 09:08:51 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-06-30 09:08:51 +0000 |
commit | c49f85f5579cdababdd5f0be67cc21a2b65e5873 (patch) | |
tree | a7dfcc607e555baa7a588d17b08ddf3e7ab5ad2c /cpp/makedist.py | |
parent | Fix (diff) | |
download | ice-c49f85f5579cdababdd5f0be67cc21a2b65e5873.tar.bz2 ice-c49f85f5579cdababdd5f0be67cc21a2b65e5873.tar.xz ice-c49f85f5579cdababdd5f0be67cc21a2b65e5873.zip |
Merged make install fixes from the branch.
Diffstat (limited to 'cpp/makedist.py')
-rwxr-xr-x | cpp/makedist.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/makedist.py b/cpp/makedist.py index d449de3b8c4..bec21b79e86 100755 --- a/cpp/makedist.py +++ b/cpp/makedist.py @@ -371,6 +371,8 @@ if verbose: quiet = "v" else: quiet = "" +os.system("chmod -R u+rw,go+r . " + icever) +os.system("find " + icever + " -type d -exec chmod a+x {} \\;") os.system("tar c" + quiet + "f " + icever + ".tar " + icever) os.system("gzip -9 " + icever + ".tar") if verbose: |