From: Ross Burton Date: Wed, 13 Sep 2017 10:25:09 +0000 (+0100) Subject: insane: consider INSANE_SKIP without package-specifier too X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=618093c6b7c919f25094f56b82610bee7c97f99f;p=openembedded-core.git insane: consider INSANE_SKIP without package-specifier too this is needed for the updated linux-firmware as it needs this INSANE_SKIP support Signed-off-by: Ross Burton (cherry picked from commit 604939186cc08ab0429ebe00f3e32661847f0cf0) Adjusted for pyro context Signed-off-by: Armin Kuster --- diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 42cd15c531..0c11c36583 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -1154,7 +1154,8 @@ python do_package_qa () { oe.utils.write_ld_so_conf(d) return warnchecks, errorchecks - skip = (d.getVar('INSANE_SKIP_' + package) or "").split() + skip = set((d.getVar('INSANE_SKIP') or "").split() + + (d.getVar('INSANE_SKIP_' + package) or "").split()) if skip: bb.note("Package %s skipping QA tests: %s" % (package, str(skip)))