summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index ba18f54428..43c3e7e2e6 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -706,6 +706,8 @@ sstate_unpack_package () {
706 tar -xmvzf ${SSTATE_PKG} 706 tar -xmvzf ${SSTATE_PKG}
707 # Use "! -w ||" to return true for read only files 707 # Use "! -w ||" to return true for read only files
708 [ ! -w ${SSTATE_PKG} ] || touch --no-dereference ${SSTATE_PKG} 708 [ ! -w ${SSTATE_PKG} ] || touch --no-dereference ${SSTATE_PKG}
709 [ ! -w ${SSTATE_PKG}.sig ] || [ ! -e ${SSTATE_PKG}.sig ] || touch --no-dereference ${SSTATE_PKG}.sig
710 [ ! -w ${SSTATE_PKG}.siginfo ] || [ ! -e ${SSTATE_PKG}.siginfo ] || touch --no-dereference ${SSTATE_PKG}.siginfo
709} 711}
710 712
711BB_HASHCHECK_FUNCTION = "sstate_checkhashes" 713BB_HASHCHECK_FUNCTION = "sstate_checkhashes"