]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate.bbclass: No need to dump the contents of the sstate package to stdout
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 27 Jan 2011 22:38:11 +0000 (22:38 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 27 Jan 2011 22:38:11 +0000 (22:38 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sstate.bbclass

index 6e17e7a40475108c94302393695eda699b4e006f..3080114509700dca1d3b1bec7f36778eda81cde4 100644 (file)
@@ -386,9 +386,9 @@ sstate_create_package () {
        cd ${SSTATE_BUILDDIR}
        # Need to handle empty directories
        if [ "$(ls -A)" ]; then
-               tar -cvzf ${SSTATE_PKG} *
+               tar -czf ${SSTATE_PKG} *
        else
-               tar -cvz --file=${SSTATE_PKG} --files-from=/dev/null
+               tar -cz --file=${SSTATE_PKG} --files-from=/dev/null
        fi
 
        cd ${WORKDIR}