[oe-commits] [openembedded-core] 09/15: multilib.bbclass: fix do_package_qa_multilib error

git at git.openembedded.org git at git.openembedded.org
Sat Sep 29 14:20:01 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 333b29df4f584fee2bf81cf5088c839aafd6c458
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Sat Sep 29 17:27:51 2018 +0800

    multilib.bbclass: fix do_package_qa_multilib error
    
    lib32-packagegroup-anaconda-support have RDEPENDS to kernel-image,
    but kernel-image don't have lib32, so skip it.
    
    ERROR: QA Issue: lib32-packagegroup-anaconda-support package
    lib32-packagegroup-anaconda-support - suspicious values 'kernel-image'
    in RDEPENDS [multilib]
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/multilib.bbclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass
index e7b717e..db39e02 100644
--- a/meta/classes/multilib.bbclass
+++ b/meta/classes/multilib.bbclass
@@ -135,7 +135,8 @@ 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")) and (not i.startswith('kernel-vmlinux')):
+                (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')) \
+                and (not i.startswith("kernel-image")):
                 candidates.append(i)
         if len(candidates) > 0:
             msg = "%s package %s - suspicious values '%s' in %s" \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list