diff options
-rw-r--r-- | meta/classes/multilib.bbclass | 2 | ||||
-rw-r--r-- | meta/lib/oe/classextend.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index d625bd527c..1a9295d36f 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -187,7 +187,7 @@ python do_package_qa_multilib() { | |||
187 | if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \ | 187 | if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \ |
188 | (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \ | 188 | (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \ |
189 | (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')) \ | 189 | (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')) \ |
190 | and (not i.startswith("kernel-image")): | 190 | and (not i.startswith("kernel-image")) and (not i.startswith("/")): |
191 | candidates.append(i) | 191 | candidates.append(i) |
192 | if len(candidates) > 0: | 192 | if len(candidates) > 0: |
193 | msg = "%s package %s - suspicious values '%s' in %s" \ | 193 | msg = "%s package %s - suspicious values '%s' in %s" \ |
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py index e25122e815..f02fbe9fba 100644 --- a/meta/lib/oe/classextend.py +++ b/meta/lib/oe/classextend.py | |||
@@ -24,6 +24,8 @@ class ClassExtender(object): | |||
24 | if not subs.startswith(self.extname): | 24 | if not subs.startswith(self.extname): |
25 | return "virtual/" + self.extname + "-" + subs | 25 | return "virtual/" + self.extname + "-" + subs |
26 | return name | 26 | return name |
27 | if name.startswith("/"): | ||
28 | return name | ||
27 | if not name.startswith(self.extname): | 29 | if not name.startswith(self.extname): |
28 | return self.extname + "-" + name | 30 | return self.extname + "-" + name |
29 | return name | 31 | return name |