summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/oe/fetch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/oe/fetch.py b/bin/oe/fetch.py
index cb1a16069..5fa589eff 100644
--- a/bin/oe/fetch.py
+++ b/bin/oe/fetch.py
@@ -403,7 +403,7 @@ class Cvs(Fetch):
os.chdir(os.path.join(tmpfile, os.path.dirname(module)))
# tar them up to a defined filename
- myret = os.system("tar -czvf %s %s" % (os.path.join(dldir,tarfn), localdir))
+ myret = os.system("tar -czf %s %s" % (os.path.join(dldir,tarfn), localdir))
if myret != 0:
try:
os.unlink(tarfn)
@@ -615,7 +615,7 @@ class Svn(Fetch):
os.chdir(os.path.join(tmpfile, os.path.dirname(module)))
# tar them up to a defined filename
- myret = os.system("tar -czvf %s %s" % (os.path.join(dldir,tarfn), os.path.basename(module)))
+ myret = os.system("tar -czf %s %s" % (os.path.join(dldir,tarfn), os.path.basename(module)))
if myret != 0:
try:
os.unlink(tarfn)