diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-21 10:13:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-21 16:55:56 +0000 |
commit | e63c406e1d654b5160111a97f4999b00ce129ab1 (patch) | |
tree | 76ca2b3c1b0dc096c87177b0fa3abc24574d84d1 | |
parent | c206007235df3e00c21a1cbf30e8a1bccc07a9e5 (diff) | |
download | poky-e63c406e1d654b5160111a97f4999b00ce129ab1.tar.gz |
multilib.bbclass: Drop populate_sdk_base exclusion
With this recently introduced exclusion, <multilib>-meta-toolchain-sdk
throws errors about missing DEPENDS that don't exist since it needs the
PROVIDES/DEPENDS remapping. This patch tweaks the class tests to fix
the errors.
(From OE-Core rev: 9cc18fe12bd8d1c73df291b4057aab6167ef6b16)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 c249925441..b379754663 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -73,7 +73,7 @@ python __anonymous () { | |||
73 | clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK") | 73 | clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK") |
74 | clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK_ATTEMPTONLY") | 74 | clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK_ATTEMPTONLY") |
75 | 75 | ||
76 | if bb.data.inherits_class('image', d) or bb.data.inherits_class('populate_sdk_base', d): | 76 | if bb.data.inherits_class('image', d): |
77 | return | 77 | return |
78 | 78 | ||
79 | clsextend.map_depends_variable("DEPENDS") | 79 | clsextend.map_depends_variable("DEPENDS") |