[yocto] [meta-meson][PATCH] layer.conf: avoid unnecessary early expansion with :=

kevin.strasser at linux.intel.com kevin.strasser at linux.intel.com
Tue Mar 19 14:59:51 PDT 2013


> From: Christopher Larson <chris_larson at mentor.com>
>
> bitbake handles immediate expansions of LAYERDIR for us automatically.
>
> Signed-off-by: Christopher Larson <chris_larson at mentor.com>
> ---
>  conf/layer.conf | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/conf/layer.conf b/conf/layer.conf
> index 8bd75d8..f463203 100644
> --- a/conf/layer.conf
> +++ b/conf/layer.conf
> @@ -1,10 +1,10 @@
>  # We have a conf and classes directory, add to BBPATH
> -BBPATH := "${LAYERDIR}:${BBPATH}"
> +BBPATH =. "${LAYERDIR}:"
>
>  # We have a packages directory, add to BBFILES
> -BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb
> ${LAYERDIR}/recipes-*/*/*.bbappend"
> +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb
> ${LAYERDIR}/recipes-*/*/*.bbappend"
>
>  BBFILE_COLLECTIONS += "meta-meson"
> -BBFILE_PATTERN_meta-meson := "^${LAYERDIR}/"
> +BBFILE_PATTERN_meta-meson = "^${LAYERDIR}/"
>  BBFILE_PRIORITY_meta-meson = "8"

Merged this and the meta-meson-bsp version, thank you.

-Kevin



More information about the yocto mailing list