diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 72ac882dbb..9160e7f6da 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -624,6 +624,8 @@ sstate_unpack_package () { | |||
624 | mkdir -p ${SSTATE_INSTDIR} | 624 | mkdir -p ${SSTATE_INSTDIR} |
625 | cd ${SSTATE_INSTDIR} | 625 | cd ${SSTATE_INSTDIR} |
626 | tar -xmvzf ${SSTATE_PKG} | 626 | tar -xmvzf ${SSTATE_PKG} |
627 | # Use "! -w ||" to return true for read only files | ||
628 | [ ! -w ${SSTATE_PKG} ] || touch --no-dereference ${SSTATE_PKG} | ||
627 | } | 629 | } |
628 | 630 | ||
629 | BB_HASHCHECK_FUNCTION = "sstate_checkhashes" | 631 | BB_HASHCHECK_FUNCTION = "sstate_checkhashes" |