mirror of
https://git.yoctoproject.org/poky
synced 2026-04-10 14:02:21 +02:00
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] (From OE-Core rev: 24b8c61bf7dd13f7f371d3a910947a1fac062c6b) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
282412460c
commit
4e93a76c1e
@@ -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" \
|
||||
|
||||
Reference in New Issue
Block a user