diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-10 09:58:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-24 15:49:20 +0000 |
commit | 1eefc83e6aeb3cd5501b8e593dda052b1e183cc5 (patch) | |
tree | 375fbc54a4d336727ce3f83f6079dd0af6f545cd /meta | |
parent | afcea61e8eb39234d336c706fdfd4680dea7c060 (diff) | |
download | openembedded-core-1eefc83e6aeb3cd5501b8e593dda052b1e183cc5.tar.gz openembedded-core-1eefc83e6aeb3cd5501b8e593dda052b1e183cc5.tar.bz2 openembedded-core-1eefc83e6aeb3cd5501b8e593dda052b1e183cc5.zip |
insane: Don't depend on BB_TASKDEPDATA
The dependency data in BB_TASKDEPDATA is encoded into the sstate checksum
in a much more reliable format. This dependency runs the risk of depending
on the string representation of a dict which is a bad idea. Therefore
remove the dependency.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/insane.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index a77438db54..1a970c007b 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -1112,6 +1112,7 @@ python do_package_qa () { bb.note("DONE with PACKAGE QA") } +do_package_qa[vardepsexclude] = "BB_TASKDEPDATA" do_package_qa[rdeptask] = "do_packagedata" addtask do_package_qa after do_packagedata do_package before do_build |