From: Christopher Larson Date: Tue, 19 Mar 2013 01:22:28 +0000 (+0000) Subject: layer.conf: avoid unnecessary early expansion with := X-Git-Tag: 2.1~534^2~300 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6cb4386d17252ef13510fda77efe21756649c20c;p=meta-freescale.git layer.conf: avoid unnecessary early expansion with := bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson --- 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"