diff options
author | Ming Liu <ming.liu@windriver.com> | 2014-01-28 15:31:15 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 11:41:21 +0000 |
commit | af1a44ada0a2baef3eafb1c9e7fa56e81255fd3d (patch) | |
tree | e973876b6794aa6f5fe4b8f91946d7cfbb43c0a6 /meta/classes | |
parent | f328a9d53b51e31bb0c30eda221cf6857b7bd4f9 (diff) | |
download | poky-af1a44ada0a2baef3eafb1c9e7fa56e81255fd3d.tar.gz |
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.
(From OE-Core rev: 00012b63fefd77c57169f7cc06d648f54890e5df)
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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" |