From: Mariano Lopez Date: Tue, 21 Feb 2017 18:20:35 +0000 (-0600) Subject: insane.bbclass: Add missing dependencies X-Git-Tag: uninative-1.5~95 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=cf351eb49c44d9cbba82392f3331e7cba0c0d0ee;p=openembedded-core.git insane.bbclass: Add missing dependencies package_qa task requires some tools installed in sysroot; with the introduction of recipe specific sysroot this task won't have such tools installed if it's forced to run. Signed-off-by: Mariano Lopez Signed-off-by: Ross Burton --- diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index e8e54f0eb2..6a34bd5a94 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -1221,6 +1221,9 @@ python do_package_qa () { bb.note("DONE with PACKAGE QA") } +# binutils is used for most checks, so need to set as dependency +# POPULATESYSROOTDEPS is defined in staging class. +do_package_qa[depends] += "${POPULATESYSROOTDEPS}" do_package_qa[vardepsexclude] = "BB_TASKDEPDATA" do_package_qa[rdeptask] = "do_packagedata" addtask do_package_qa after do_packagedata do_package before do_build