mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +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}
|
||||
# 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}
|
||||
|
||||
Reference in New Issue
Block a user