summaryrefslogtreecommitdiff
path: root/cpp/newmakebindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2005-03-07 23:50:52 +0000
committerBrent Eagles <brent@zeroc.com>2005-03-07 23:50:52 +0000
commit0557e456575147f23b03587857cac97e23ed75f2 (patch)
tree55000706cc9615b894ba6a4b072b0f510e36d963 /cpp/newmakebindist.py
parentminor edits (diff)
downloadice-0557e456575147f23b03587857cac97e23ed75f2.tar.bz2
ice-0557e456575147f23b03587857cac97e23ed75f2.tar.xz
ice-0557e456575147f23b03587857cac97e23ed75f2.zip
fixing gacutil cleanup, some file location bugs and reducing noise while
running
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)