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:50:27 +0000 |
commit | 7d8616c2fc11add194a157402999b385024e447e (patch) | |
tree | 53c76c909cbf070a57c78e7968cde71774974109 /meta/classes/insane.bbclass | |
parent | a9cc27e6916e5affe8b0cc431c3e89abd7681643 (diff) | |
download | poky-7d8616c2fc11add194a157402999b385024e447e.tar.gz |
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.
(From OE-Core rev: 1eefc83e6aeb3cd5501b8e593dda052b1e183cc5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-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 () { | |||
1112 | bb.note("DONE with PACKAGE QA") | 1112 | bb.note("DONE with PACKAGE QA") |
1113 | } | 1113 | } |
1114 | 1114 | ||
1115 | do_package_qa[vardepsexclude] = "BB_TASKDEPDATA" | ||
1115 | do_package_qa[rdeptask] = "do_packagedata" | 1116 | do_package_qa[rdeptask] = "do_packagedata" |
1116 | addtask do_package_qa after do_packagedata do_package before do_build | 1117 | addtask do_package_qa after do_packagedata do_package before do_build |
1117 | 1118 | ||