diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-07 23:59:25 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-07 23:59:25 +0000 |
commit | 2334ff0add353a527a8eff27de5ec80dcbc68cc9 (patch) | |
tree | 83d8308400dc51e9c096e017dad127691ab99140 /cpp | |
parent | fixing gacutil cleanup, some file location bugs and reducing noise while (diff) | |
download | ice-2334ff0add353a527a8eff27de5ec80dcbc68cc9.tar.bz2 ice-2334ff0add353a527a8eff27de5ec80dcbc68cc9.tar.xz ice-2334ff0add353a527a8eff27de5ec80dcbc68cc9.zip |
more quiet -> zip flags
Diffstat (limited to 'cpp')
-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 377819c5991..717370ac235 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -242,7 +242,7 @@ def archiveDemoTree(buildDir, version): os.system("tar cf Ice-" + version + "-demos.tar Ice-" + version + "-demos") os.system("gzip -9 Ice-" + version + "-demos.tar") - os.system("zip -9ry Ice-" + version + "-demos.zip Ice-" + version + "-demos") + os.system("zip -q9ry Ice-" + version + "-demos.zip Ice-" + version + "-demos") os.chdir(cwd) def makeInstall(sources, buildDir, installDir, distro, clean): @@ -605,7 +605,7 @@ def main(): os.chdir(installDir) os.system("tar cf Ice-" + version + "-bin-" + getPlatform() + ".tar Ice-" + version) os.system("gzip -9 Ice-" + version + "-bin-" + getPlatform() + ".tar") - os.system("zip -9ry Ice-" + version + "-bin-" + getPlatform() + ".zip Ice-" + version) + os.system("zip -9qry Ice-" + version + "-bin-" + getPlatform() + ".zip Ice-" + version) os.chdir(cwd) # |