From: Dongxiao Xu Date: Wed, 7 Sep 2011 08:33:41 +0000 (+0800) Subject: multilib_global.bbclass: handle kernel-module-* for multilib X-Git-Tag: 2011-1~149 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=30ac343888dc801614922045b374537c6c54f312;p=openembedded-core.git multilib_global.bbclass: handle kernel-module-* for multilib bitbake would report failed dependency of kernel-module-* when testing multilib. kernel-module-* are recommended by some other recipes. Do not extend name for kernel-module-* related packages. [YOCTO #1456] Signed-off-by: Dongxiao Xu Signed-off-by: Richard Purdie --- diff --git a/meta/classes/multilib_global.bbclass b/meta/classes/multilib_global.bbclass index 217349b2d4..1263e4ea82 100644 --- a/meta/classes/multilib_global.bbclass +++ b/meta/classes/multilib_global.bbclass @@ -17,6 +17,8 @@ python multilib_virtclass_handler_global () { addhandler multilib_virtclass_handler_global def multilib_extend_name(variant, name): + if name.startswith("kernel-module"): + return name if name.startswith("virtual/"): subs = name.split("/", 1)[1] if not subs.startswith(variant):