package_tar.bbclass: Make the output slightly less verbose
authorRichard Purdie <richard@openedhand.com>
Mon, 11 Feb 2008 22:54:02 +0000 (22:54 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 11 Feb 2008 22:54:02 +0000 (22:54 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3773 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/package_tar.bbclass

index 392a4f2..876cec6 100644 (file)
@@ -83,15 +83,12 @@ python do_package_tar () {
                bb.mkdirhier(pkgoutdir)
                bb.build.exec_func('package_tar_fn', localdata)
                tarfn = bb.data.getVar('PKGFN', localdata, 1)
-#              if os.path.exists(tarfn):
-#                      del localdata
-#                      continue
                os.chdir(root)
                from glob import glob
                if not glob('*'):
                        bb.note("Not creating empty archive for %s-%s-%s" % (pkg, bb.data.getVar('PV', localdata, 1), bb.data.getVar('PR', localdata, 1)))
                        continue
-               ret = os.system("tar -czvf %s %s" % (tarfn, '.'))
+               ret = os.system("tar -czf %s %s" % (tarfn, '.'))
                if ret != 0:
                        bb.error("Creation of tar %s failed." % tarfn)
 }