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 | |
parent | 1cb9f7b00b5ede62a9546c39d798c876775b08c0 (diff) | |
download | ast2050-yocto-poky-9e99bcffec594cb5b4c3533200e8eb56d32e6a77.zip ast2050-yocto-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')
-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 9ffe675..106ace7 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -917,7 +917,7 @@ python do_package_qa () { bb.note("DONE with PACKAGE QA") } -addtask do_package_qa after do_package before do_build +addtask do_package_qa after do_packagedata do_package before do_build SSTATETASKS += "do_package_qa" do_package_qa[sstate-inputdirs] = "" |