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.
Signed-off-by: Richard Purdie <[email protected]> --- diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index c249925..b379754 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass @@ -73,7 +73,7 @@ python __anonymous () { clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK") clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK_ATTEMPTONLY") - if bb.data.inherits_class('image', d) or bb.data.inherits_class('populate_sdk_base', d): + if bb.data.inherits_class('image', d): return clsextend.map_depends_variable("DEPENDS") _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
