diff options
author | Andrei Gherzan <andrei.gherzan@windriver.com> | 2013-01-04 13:23:31 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-01-04 16:40:50 -0200 |
commit | 298989099ebee8f307c8a45819a3f97901b73db9 (patch) | |
tree | 3d477291dd901e58ecca8c73523bd1d1f55c5353 | |
parent | 1fb34b50daaf1d751956056c7136ee1d42b5b776 (diff) | |
download | meta-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.conf | 4 |
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 |
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 += "freescale" | 8 | BBFILE_COLLECTIONS += "freescale" |