summaryrefslogtreecommitdiffstats
path: root/meta-fsl-arm/conf/layer.conf
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei.gherzan@windriver.com>2013-01-04 13:23:31 +0200
committerOtavio Salvador <otavio@ossystems.com.br>2013-01-04 16:40:50 -0200
commitedfa7c582f10c6b5917782b2abfcfed2e24bb3c3 (patch)
tree336eba08866ed2bb5f6d64243a92b0660655b024 /meta-fsl-arm/conf/layer.conf
parenta8c95b7ef1e232696d538e510dd94b2d0fefa0c1 (diff)
downloadmeta-freescale-edfa7c582f10c6b5917782b2abfcfed2e24bb3c3.tar.gz
layer.conf: Use .= for adding to BBPATH and += to BBFILES
http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e This triggers exception NameError: name 'base_contains' is not defined without this change Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
Diffstat (limited to 'meta-fsl-arm/conf/layer.conf')
-rw-r--r--meta-fsl-arm/conf/layer.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-fsl-arm/conf/layer.conf b/meta-fsl-arm/conf/layer.conf
index 4f7972575..ee88ad403 100644
--- a/meta-fsl-arm/conf/layer.conf
+++ b/meta-fsl-arm/conf/layer.conf
@@ -1,8 +1,8 @@
1# We have a conf and classes directory, add to BBPATH 1# We have a conf and classes directory, add to BBPATH
2BBPATH := "${BBPATH}:${LAYERDIR}" 2BBPATH .= ":${LAYERDIR}"
3 3
4# We have a packages directory, add to BBFILES 4# We have a packages directory, add to BBFILES
5BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bbappend" 6 ${LAYERDIR}/recipes-*/*/*.bbappend"
7 7
8BBFILE_COLLECTIONS += "freescale" 8BBFILE_COLLECTIONS += "freescale"