diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-11 23:17:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-11 23:20:04 +0100 |
commit | 9e99bcffec594cb5b4c3533200e8eb56d32e6a77 (patch) | |
tree | 39872eb267f74bba767e14dcff9a45b0f4261d69 /meta/classes/insane.bbclass | |
parent | 1cb9f7b00b5ede62a9546c39d798c876775b08c0 (diff) | |
download | poky-9e99bcffec594cb5b4c3533200e8eb56d32e6a77.tar.gz |
insane: Ensure do_package_qa happens after do_packagedata
We're relying on the packagedata being available for this task to work
correctly so lets ensure it is with the correct dependency.
(From OE-Core rev: fa325e44f5b429b4038022b31285af9c94672943)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 9ffe6751d8..106ace7651 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -917,7 +917,7 @@ python do_package_qa () { | |||
917 | bb.note("DONE with PACKAGE QA") | 917 | bb.note("DONE with PACKAGE QA") |
918 | } | 918 | } |
919 | 919 | ||
920 | addtask do_package_qa after do_package before do_build | 920 | addtask do_package_qa after do_packagedata do_package before do_build |
921 | 921 | ||
922 | SSTATETASKS += "do_package_qa" | 922 | SSTATETASKS += "do_package_qa" |
923 | do_package_qa[sstate-inputdirs] = "" | 923 | do_package_qa[sstate-inputdirs] = "" |