diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-09-27 19:08:47 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-28 14:58:53 +0100 |
commit | 6f6863a2581b434390c0729cd9915306ffbf6924 (patch) | |
tree | bc0e17ab11dca8cba8413ba5c6ccf6bcec81c195 /meta/classes/multilib.bbclass | |
parent | 9184d807f776ca3c9ef315050fb2a9e139fedc8b (diff) | |
download | poky-6f6863a2581b434390c0729cd9915306ffbf6924.tar.gz |
multilib: remove the multilib handling to allarch
currently we have allarch type of recipes, which may still have
architecture dependency, like x11-common. So we need to drop the
handling to allarch in multilib case.
Also remove the PV postfix in python-pygobject DEPENDS, since multilib
code will treat a native package multilib capable.
[YOCTO #1497]
[YOCTO #1498]
(From OE-Core rev: 64c0279e6b0d2325a326058476228360898550f3)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/multilib.bbclass')
-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 0ea1038de9..6c0dd37930 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -8,7 +8,7 @@ python multilib_virtclass_handler () { | |||
8 | return | 8 | return |
9 | 9 | ||
10 | # There should only be one kernel in multilib configs | 10 | # There should only be one kernel in multilib configs |
11 | if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data) or bb.data.inherits_class('allarch', e.data): | 11 | if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data): |
12 | raise bb.parse.SkipPackage("We shouldn't have multilib variants for the kernel") | 12 | raise bb.parse.SkipPackage("We shouldn't have multilib variants for the kernel") |
13 | 13 | ||
14 | if bb.data.inherits_class('image', e.data): | 14 | if bb.data.inherits_class('image', e.data): |