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:24:38 +0100 |
commit | 5a71f258258d4cfa6730b45f58bfe44888903683 (patch) | |
tree | fc32735b5b9f2673c0b74b900cb57ed8651fef66 | |
parent | 7250638ec895bc89508711831083d43b9e1e9826 (diff) | |
download | poky-5a71f258258d4cfa6730b45f58bfe44888903683.tar.gz |
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.
(From OE-Core rev: d4f4a57b8d564d57256017d937ed2eabf94c36ae)
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 () { | |||
561 | tar -xvzf ${SSTATE_PKG} | 561 | tar -xvzf ${SSTATE_PKG} |
562 | } | 562 | } |
563 | 563 | ||
564 | EXTRASSTATEMAPS = "do_deploy:deploy" | 564 | # Need to inject information about classes not in the global configuration scope |
565 | EXTRASSTATEMAPS += "do_deploy:deploy" | ||
565 | 566 | ||
566 | BB_HASHCHECK_FUNCTION = "sstate_checkhashes" | 567 | BB_HASHCHECK_FUNCTION = "sstate_checkhashes" |
567 | 568 | ||