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 11:47:23 +0100 |
commit | 64c0279e6b0d2325a326058476228360898550f3 (patch) | |
tree | 574f88af1eceeed68367302e01f0e8fb3efe05b3 /meta/classes/multilib_global.bbclass | |
parent | 93984bb1c9440294a694986831d7a4114c55a282 (diff) | |
download | openembedded-core-64c0279e6b0d2325a326058476228360898550f3.tar.gz openembedded-core-64c0279e6b0d2325a326058476228360898550f3.tar.bz2 openembedded-core-64c0279e6b0d2325a326058476228360898550f3.zip |
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]
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/classes/multilib_global.bbclass')
-rw-r--r-- | meta/classes/multilib_global.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/multilib_global.bbclass b/meta/classes/multilib_global.bbclass index cd22163894..2da66a5e6e 100644 --- a/meta/classes/multilib_global.bbclass +++ b/meta/classes/multilib_global.bbclass @@ -5,7 +5,7 @@ python multilib_virtclass_handler_global () { variant = e.data.getVar("BBEXTENDVARIANT", True) if isinstance(e, bb.event.RecipeParsed) and not variant: - 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): + if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data): variants = (e.data.getVar("MULTILIB_VARIANTS", True) or "").split() # Process PROVIDES |