[meta-freescale] [meta-fsl-ppc][danny][PATCH] layer.conf: avoid unnecessary early expansion with :=

Christopher Larson kergoth at gmail.com
Mon Mar 18 18:28:31 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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 9d2e54b..ad8c5f3 100644
--- a/conf/layer.conf
+++ b/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"
-BBFILE_PATTERN_fsl := "^${LAYERDIR}/"
+BBFILE_PATTERN_fsl = "^${LAYERDIR}/"
 BBFILE_PRIORITY_fsl = "5"
 
 BB_ENV_EXTRAWHITE := "KSRC USRC"
-- 
1.8.2




More information about the meta-freescale mailing list