summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2013-03-19 01:28:47 +0000
committerZhenhua Luo <zhenhua.luo@freescale.com>2013-03-26 14:04:16 +0800
commit4c99d7ac79466aa4165db5d44f7337683dc46a7a (patch)
tree247beb3e4c048df1b8386063c6e0fb55fa9f3c3d
parent3b9e45f89731ba8f44c846f533f53b1d92e298e0 (diff)
downloadmeta-fsl-ppc-denzil.tar.gz
layer.conf: avoid unnecessary early expansion with :=denzil
bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
-rw-r--r--conf/layer.conf4
1 files 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 @@
1# We have a packages directory, add to BBFILES 1# We have a packages directory, add to BBFILES
2BBPATH := "${BBPATH}:${LAYERDIR}" 2BBPATH .= ":${LAYERDIR}"
3 3
4BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*" 4BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*"
5BBFILES += "${LAYERDIR}/images/*.bb*" 5BBFILES += "${LAYERDIR}/images/*.bb*"
6 6
7BBFILE_COLLECTIONS += "fsl" 7BBFILE_COLLECTIONS += "fsl"
8BBFILE_PATTERN_fsl := "^${LAYERDIR}/" 8BBFILE_PATTERN_fsl = "^${LAYERDIR}/"
9BBFILE_PRIORITY_fsl = "5" 9BBFILE_PRIORITY_fsl = "5"
10 10
11BB_ENV_EXTRAWHITE := "KSRC USRC" 11BB_ENV_EXTRAWHITE := "KSRC USRC"