summaryrefslogtreecommitdiff
path: root/cpp/newmakebindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2005-02-21 14:23:14 +0000
committerBrent Eagles <brent@zeroc.com>2005-02-21 14:23:14 +0000
commite4bed9dce72e571a3a936a9cabbffe95ce70b2fa (patch)
tree494cdf2b0ebe22630ee67134a53d1a2148de4826 /cpp/newmakebindist.py
parentremove obsoleted files from ice-java-devel rpm package listing (diff)
downloadice-e4bed9dce72e571a3a936a9cabbffe95ce70b2fa.tar.bz2
ice-e4bed9dce72e571a3a936a9cabbffe95ce70b2fa.tar.xz
ice-e4bed9dce72e571a3a936a9cabbffe95ce70b2fa.zip
fix bogus tar typo
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 caf43ad3bad..99870b7bf04 100755
--- a/cpp/newmakebindist.py
+++ b/cpp/newmakebindist.py
@@ -379,7 +379,7 @@ def extractDemos(buildDir, version, distro, demoDir):
Ice"""
cwd = os.getcwd()
os.chdir(buildDir + "/demotree")
- os.system("gzip -dc ../sources/" + distro + ".tar.gz | tar x " + distro + "/demo " + distro + "/config " \
+ os.system("gzip -dc ../sources/" + distro + ".tar.gz | tar xf - " + distro + "/demo " + distro + "/config " \
+ distro + "/certs")
shutil.move(distro + "/demo", buildDir + "/Ice-" + version + "-demos/demo" + demoDir)
@@ -532,7 +532,7 @@ def makeInstall(buildDir, installDir, distro, clean):
shutil.rmtree(distro, True)
if not os.path.exists(distro):
- os.system("gzip -dc sources/" + distro + ".tar.gz | tar x")
+ os.system("gzip -dc sources/" + distro + ".tar.gz | tar xf -")
os.chdir(distro)