summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>2004-08-26 09:05:29 +0000
committerMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>2004-08-26 09:05:29 +0000
commit0374cbc1df961c1576490a7dbdb19c6f7081aa1a (patch)
tree9b3e74edebb08962185bbd1eb41a0560701ff68a
parent59622413a2f42a94b09d418e345cc6e9d227347d (diff)
downloadbitbake-contrib-0374cbc1df961c1576490a7dbdb19c6f7081aa1a.tar.gz
quiet cvs/svn tarball creating
-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)