From: Andrei Gherzan Date: Fri, 4 Jan 2013 11:23:31 +0000 (+0200) Subject: layer.conf: Use .= for adding to BBPATH and += to BBFILES X-Git-Tag: 2.1~1563 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=edfa7c582f10c6b5917782b2abfcfed2e24bb3c3;p=meta-freescale.git 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 --- diff --git a/meta-fsl-arm/conf/layer.conf b/meta-fsl-arm/conf/layer.conf index 4f797257..ee88ad40 100644 --- a/meta-fsl-arm/conf/layer.conf +++ b/meta-fsl-arm/conf/layer.conf @@ -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"