]> code.ossystems Code Review - meta-freescale.git/commitdiff
layer.conf: Use .= for adding to BBPATH and += to BBFILES
authorAndrei Gherzan <andrei.gherzan@windriver.com>
Fri, 4 Jan 2013 11:23:31 +0000 (13:23 +0200)
committerOtavio Salvador <otavio@ossystems.com.br>
Fri, 4 Jan 2013 18:40:50 +0000 (16:40 -0200)
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>
meta-fsl-arm/conf/layer.conf

index 4f7972575a4b74010c681ac9dfcd16512874228b..ee88ad40384a9500f1314998e68511256b2eec01 100644 (file)
@@ -1,8 +1,8 @@
 # We have a conf and classes directory, add to BBPATH
-BBPATH := "${BBPATH}:${LAYERDIR}"
+BBPATH .= ":${LAYERDIR}"
 
 # We have a packages directory, add to BBFILES
-BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
+BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
             ${LAYERDIR}/recipes-*/*/*.bbappend"
 
 BBFILE_COLLECTIONS += "freescale"