diff options
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 6c3e82877b..33aa8d7844 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -703,7 +703,7 @@ sstate_create_package () { | |||
703 | # Will be run from within SSTATE_INSTDIR. | 703 | # Will be run from within SSTATE_INSTDIR. |
704 | # | 704 | # |
705 | sstate_unpack_package () { | 705 | sstate_unpack_package () { |
706 | tar -xmvzf ${SSTATE_PKG} | 706 | tar -xvzf ${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 | 709 | [ ! -w ${SSTATE_PKG}.sig ] || [ ! -e ${SSTATE_PKG}.sig ] || touch --no-dereference ${SSTATE_PKG}.sig |