diff options
-rw-r--r-- | meta/classes/multilib.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index 5eb4a7ba86..9a1cb1d916 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -120,7 +120,7 @@ python do_package_qa_multilib() { | |||
120 | i = i[len('virtual/'):] | 120 | i = i[len('virtual/'):] |
121 | if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \ | 121 | if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \ |
122 | (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \ | 122 | (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \ |
123 | (not i.startswith("rtld")): | 123 | (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')): |
124 | candidates.append(i) | 124 | candidates.append(i) |
125 | if len(candidates) > 0: | 125 | if len(candidates) > 0: |
126 | bb.warn("Multilib QA Issue: %s package %s - suspicious values '%s' in %s" | 126 | bb.warn("Multilib QA Issue: %s package %s - suspicious values '%s' in %s" |