1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

sstate/lib.oe.path: Ensure file sparseness is preserved

Files when restored from sstate were missing their sparseness. Fix up various
functions to preserve this and make things more deterministic.

(From OE-Core rev: 055402e5504f041c346571e243c7cf0894955cad)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2018-08-14 17:23:10 +00:00
parent 899a3694de
commit a1b4b7c0b4
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -721,9 +721,9 @@ sstate_create_package () {
TFILE=`mktemp ${SSTATE_PKG}.XXXXXXXX`
# Use pigz if available
OPT="-cz"
OPT="-czS"
if [ -x "$(command -v pigz)" ]; then
OPT="-I pigz -c"
OPT="-I pigz -cS"
fi
# Need to handle empty directories