diff options
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 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) # |