mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
multilib.bbclass: fix do_package_qa_multilib
The packages which start with "rtld" are ok [YOCTO #3440] (From OE-Core rev: 1bb3f44065d0470dd2f6950e267ef991c2ce6fd5) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ab0933e118
commit
2437aaee8d
@@ -101,7 +101,9 @@ python do_package_qa_multilib() {
|
||||
for i in values:
|
||||
if i.startswith('virtual/'):
|
||||
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-")):
|
||||
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")):
|
||||
candidates.append(i)
|
||||
if len(candidates) > 0:
|
||||
bb.warn("Multilib QA Issue: %s package %s - suspicious values '%s' in %s"
|
||||
|
||||
Reference in New Issue
Block a user