summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-11 23:17:40 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-11 23:20:04 +0100
commit9e99bcffec594cb5b4c3533200e8eb56d32e6a77 (patch)
tree39872eb267f74bba767e14dcff9a45b0f4261d69 /meta/classes/insane.bbclass
parent1cb9f7b00b5ede62a9546c39d798c876775b08c0 (diff)
downloadpoky-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.bbclass2
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
920addtask do_package_qa after do_package before do_build 920addtask do_package_qa after do_packagedata do_package before do_build
921 921
922SSTATETASKS += "do_package_qa" 922SSTATETASKS += "do_package_qa"
923do_package_qa[sstate-inputdirs] = "" 923do_package_qa[sstate-inputdirs] = ""