mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 03:49:32 +02:00
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:
@@ -386,9 +386,9 @@ sstate_create_package () {
|
|||||||
cd ${SSTATE_BUILDDIR}
|
cd ${SSTATE_BUILDDIR}
|
||||||
# Need to handle empty directories
|
# Need to handle empty directories
|
||||||
if [ "$(ls -A)" ]; then
|
if [ "$(ls -A)" ]; then
|
||||||
tar -cvzf ${SSTATE_PKG} *
|
tar -czf ${SSTATE_PKG} *
|
||||||
else
|
else
|
||||||
tar -cvz --file=${SSTATE_PKG} --files-from=/dev/null
|
tar -cz --file=${SSTATE_PKG} --files-from=/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ${WORKDIR}
|
cd ${WORKDIR}
|
||||||
|
|||||||
Reference in New Issue
Block a user