summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 4fdfcc83ec..e2bc7355b4 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -725,7 +725,7 @@ python sstate_sign_package () {
725sstate_unpack_package () { 725sstate_unpack_package () {
726 tar -xvzf ${SSTATE_PKG} 726 tar -xvzf ${SSTATE_PKG}
727 # update .siginfo atime on local/NFS mirror 727 # update .siginfo atime on local/NFS mirror
728 [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo 728 [ -w ${SSTATE_PKG}.siginfo ] && [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo
729 # Use "! -w ||" to return true for read only files 729 # Use "! -w ||" to return true for read only files
730 [ ! -w ${SSTATE_PKG} ] || touch --no-dereference ${SSTATE_PKG} 730 [ ! -w ${SSTATE_PKG} ] || touch --no-dereference ${SSTATE_PKG}
731 [ ! -w ${SSTATE_PKG}.sig ] || [ ! -e ${SSTATE_PKG}.sig ] || touch --no-dereference ${SSTATE_PKG}.sig 731 [ ! -w ${SSTATE_PKG}.sig ] || [ ! -e ${SSTATE_PKG}.sig ] || touch --no-dereference ${SSTATE_PKG}.sig