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 20:09:56 -0200 |
| commit | 499281a16f05848c993feabfaceb393367ae1aed (patch) | |
| tree | 88848290cc8033380bb8cba2e03e3d219f944ab8 | |
| parent | 0ec56959036605503576bf84be00188853a01e61 (diff) | |
| download | meta-fsl-arm-499281a16f05848c993feabfaceb393367ae1aed.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" |
