diff options
author | Kai Kang <kai.kang@windriver.com> | 2018-09-11 19:25:17 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-13 07:42:28 +0100 |
commit | d9ba0219b2f6643ffc825d4b8d3494d07237dd0b (patch) | |
tree | a9b272b8d30c962443cddddf8db9469767de7988 /meta/classes/multilib.bbclass | |
parent | c2d00e2f83cdf3d2923660448756ed29296a06a6 (diff) | |
download | poky-d9ba0219b2f6643ffc825d4b8d3494d07237dd0b.tar.gz |
allarch: only enable allarch when multilib is not used
Some allarch packages rdepends non-allarch packages. when multilib is
used, it doesn't expand the dependency chain correctly, e.g.
core-image-sato -> ca-certificates(allarch) -> openssl
we expect dependency chain for lib32-core-image-sato:
lib32-core-image-sato -> ca-certificates(allarch) -> lib32-openssl
it should install lib32-openssl for ca-certificates but openssl is still
wrongly required.
Only enable allarch when multilib is not used to fix the issue.
(From OE-Core rev: a23c482cab4f874f4a6a6889716123569eb5ece9)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/multilib.bbclass')
-rw-r--r-- | meta/classes/multilib.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index f2ac8bdfef..7b4d6472b0 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -50,7 +50,8 @@ python multilib_virtclass_handler () { | |||
50 | if bb.data.inherits_class('nativesdk', e.data) or bb.data.inherits_class('crosssdk', e.data): | 50 | if bb.data.inherits_class('nativesdk', e.data) or bb.data.inherits_class('crosssdk', e.data): |
51 | raise bb.parse.SkipRecipe("We can't extend nativesdk recipes") | 51 | raise bb.parse.SkipRecipe("We can't extend nativesdk recipes") |
52 | 52 | ||
53 | if bb.data.inherits_class('allarch', e.data) and not bb.data.inherits_class('packagegroup', e.data): | 53 | if bb.data.inherits_class('allarch', e.data) and not d.getVar('MULTILIB_VARIANTS') \ |
54 | and not bb.data.inherits_class('packagegroup', e.data): | ||
54 | raise bb.parse.SkipRecipe("Don't extend allarch recipes which are not packagegroups") | 55 | raise bb.parse.SkipRecipe("Don't extend allarch recipes which are not packagegroups") |
55 | 56 | ||
56 | # Expand this since this won't work correctly once we set a multilib into place | 57 | # Expand this since this won't work correctly once we set a multilib into place |