summaryrefslogtreecommitdiffstats
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
commit298989099ebee8f307c8a45819a3f97901b73db9 (patch)
tree3d477291dd901e58ecca8c73523bd1d1f55c5353
parent1fb34b50daaf1d751956056c7136ee1d42b5b776 (diff)
downloadmeta-fsl-arm-298989099ebee8f307c8a45819a3f97901b73db9.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>
-rw-r--r--conf/layer.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 4f79725..ee88ad4 100644
--- a/conf/layer.conf
+++ b/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"