sstate.bbclass: No need to dump the contents of the sstate package to stdout

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-01-27 22:38:11 +00:00
parent bb7a42ee4e
commit 021cf7dabf
1 changed files with 2 additions and 2 deletions

View 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}