summaryrefslogtreecommitdiff
path: root/cpp/newmakebindist.py
diff options
context:
space:
mode:
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 fb5846a3f62..377819c5991 100755
--- a/cpp/newmakebindist.py
+++ b/cpp/newmakebindist.py
@@ -240,7 +240,7 @@ def archiveDemoTree(buildDir, version):
os.system("sh -c 'for f in `find Ice-" + version + "-demos/democs -name \"*.sln\" ` ; do rm -rf $f ; done'")
os.system("sh -c 'for f in `find Ice-" + version + "-demos/democs -name \"*.csproj\" ` ; do rm -rf $f ; done'")
- os.system("tar cvf Ice-" + version + "-demos.tar Ice-" + version + "-demos")
+ 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.chdir(cwd)
@@ -603,7 +603,7 @@ def main():
strip(binaries)
cwd = os.getcwd()
os.chdir(installDir)
- os.system("tar cvf Ice-" + version + "-bin-" + getPlatform() + ".tar Ice-" + version)
+ 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.chdir(cwd)