diff options
author | Andrei Gherzan <andrei.gherzan@windriver.com> | 2013-01-04 11:33:25 +0000 |
---|---|---|
committer | Joe MacDonald <joe.macdonald@windriver.com> | 2013-01-04 15:12:20 -0500 |
commit | cd5f284730a6430d563443786c409aa6783d4b04 (patch) | |
tree | b6fd3b2e87792b66eb7d31fd860d78b1acacef2c /meta-networking | |
parent | e269762ff4cff0357a9a67470f8281042733e5ad (diff) | |
download | meta-openembedded-cd5f284730a6430d563443786c409aa6783d4b04.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>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/conf/layer.conf | 6 |
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 |
2 | BBPATH := "${BBPATH}:${LAYERDIR}" | 2 | BBPATH .= ":${LAYERDIR}" |
3 | 3 | ||
4 | # We have a packages directory, add to BBFILES | 4 | # We have a packages directory, add to BBFILES |
5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ | 5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ |
6 | ${LAYERDIR}/recipes-*/*/*.bbappend" | 6 | ${LAYERDIR}/recipes-*/*/*.bbappend" |
7 | 7 | ||
8 | BBFILE_COLLECTIONS += "networking" | 8 | BBFILE_COLLECTIONS += "networking" |
9 | BBFILE_PATTERN_networking := "^${LAYERDIR}/" | 9 | BBFILE_PATTERN_networking := "^${LAYERDIR}/" |