diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-12 14:23:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-12 14:23:39 +0100 |
commit | d4f4a57b8d564d57256017d937ed2eabf94c36ae (patch) | |
tree | fb31e3f0cb1b3c25b0465500507521ea20e9cb09 | |
parent | 48169c6bc44c546cecaa06207b6c36da558b81f7 (diff) | |
download | openembedded-core-d4f4a57b8d564d57256017d937ed2eabf94c36ae.tar.gz openembedded-core-d4f4a57b8d564d57256017d937ed2eabf94c36ae.tar.bz2 openembedded-core-d4f4a57b8d564d57256017d937ed2eabf94c36ae.zip |
sstate: Append to EXTRASSTATEMAPS and add comment
Appending to EXTRA_SSTATEMAPS is better than just hardcoding a value. Also
add a comment about why this is necessary.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/sstate.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 9a168d460d..6ccaf6d682 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -561,7 +561,8 @@ sstate_unpack_package () { tar -xvzf ${SSTATE_PKG} } -EXTRASSTATEMAPS = "do_deploy:deploy" +# Need to inject information about classes not in the global configuration scope +EXTRASSTATEMAPS += "do_deploy:deploy" BB_HASHCHECK_FUNCTION = "sstate_checkhashes" |