summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei.gherzan@windriver.com>2013-03-21 14:46:31 -0700
committerEric BĂ©nard <eric@eukrea.com>2013-04-05 16:56:07 +0200
commitb3ec2fa1ad055caa507391da0e1e5eb0965c92fc (patch)
tree9f3e423225113481aa6283da3209be7ce30017c0
parent1105d44ca23910b2bb7f22b0b6ed39e1ed5aa026 (diff)
downloadmeta-openembedded-b3ec2fa1ad055caa507391da0e1e5eb0965c92fc.tar.gz
layer.conf: Use .= for adding to BBPATH and += to BBFILES
Fixes parsing errors which is appearing after this commit to meta-openembedded 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> Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
-rw-r--r--meta-networking/conf/layer.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-networking/conf/layer.conf b/meta-networking/conf/layer.conf
index f26a17265..1ea2bc2ea 100644
--- a/meta-networking/conf/layer.conf
+++ b/meta-networking/conf/layer.conf
@@ -1,9 +1,9 @@
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 += "networking" 8BBFILE_COLLECTIONS += "networking"
9BBFILE_PATTERN_networking := "^${LAYERDIR}/" 9BBFILE_PATTERN_networking := "^${LAYERDIR}/"