From 6cb4386d17252ef13510fda77efe21756649c20c Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 19 Mar 2013 01:22:28 +0000 Subject: [PATCH] layer.conf: avoid unnecessary early expansion with := bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson --- meta-fsl-ppc/conf/layer.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-fsl-ppc/conf/layer.conf b/meta-fsl-ppc/conf/layer.conf index ac08f27e..ea7f02dd 100644 --- a/meta-fsl-ppc/conf/layer.conf +++ b/meta-fsl-ppc/conf/layer.conf @@ -1,11 +1,11 @@ # We have a packages directory, add to BBFILES -BBPATH := "${BBPATH}:${LAYERDIR}" +BBPATH .= ":${LAYERDIR}" BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*" BBFILES += "${LAYERDIR}/images/*.bb*" BBFILE_COLLECTIONS += "fsl-ppc" -BBFILE_PATTERN_fsl-ppc := "^${LAYERDIR}/" +BBFILE_PATTERN_fsl-ppc = "^${LAYERDIR}/" BBFILE_PRIORITY_fsl-ppc = "5" BB_ENV_EXTRAWHITE := "KSRC USRC" -- 2.40.1