From 29dece8008c3c6d48b09aeef37f85617cef5dce9 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 19 Mar 2013 01:22:28 +0000 Subject: layer.conf: avoid unnecessary early expansion with := bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson --- conf/layer.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conf') diff --git a/conf/layer.conf b/conf/layer.conf index ac08f27..ea7f02d 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-ppc" -BBFILE_PATTERN_fsl-ppc := "^${LAYERDIR}/" +BBFILE_PATTERN_fsl-ppc = "^${LAYERDIR}/" BBFILE_PRIORITY_fsl-ppc = "5" BB_ENV_EXTRAWHITE := "KSRC USRC" -- cgit v1.2.3-54-g00ecf