[oe-commits] Ming Liu : multilib.bbclass: fix Multilib QA Issue

git at git.openembedded.org git at git.openembedded.org
Sun Feb 2 11:26:01 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: 00012b63fefd77c57169f7cc06d648f54890e5df
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=00012b63fefd77c57169f7cc06d648f54890e5df

Author: Ming Liu <ming.liu at windriver.com>
Date:   Tue Jan 28 15:31:15 2014 +0800

multilib.bbclass: fix Multilib QA Issue

Multilib QA warning was observed, as follows:
------
WARNING: Multilib QA Issue: lib32-oprofile package lib32-oprofile -
suspicious values 'kernel-vmlinux' in RRECOMMENDS
------

The package starting with 'kernel-vmlinux' should be ok with multilib QA
checking.

Signed-off-by: Ming Liu <ming.liu at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/multilib.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass
index 5eb4a7b..9a1cb1d 100644
--- a/meta/classes/multilib.bbclass
+++ b/meta/classes/multilib.bbclass
@@ -120,7 +120,7 @@ python do_package_qa_multilib() {
                 i = i[len('virtual/'):]
             if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \
                 (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \
-                (not i.startswith("rtld")):
+                (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')):
                 candidates.append(i)
         if len(candidates) > 0:
             bb.warn("Multilib QA Issue: %s package %s - suspicious values '%s' in %s" 



More information about the Openembedded-commits mailing list