[oe] [meta-opie][PATCH] layer.conf: Use .= for adding to BBPATH and += to BBFILES

Khem Raj raj.khem at gmail.com
Fri Jan 4 03:52:02 UTC 2013


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: Khem Raj <raj.khem at gmail.com>
---
 conf/layer.conf |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 4d900c9..6950246 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -2,10 +2,10 @@
 # Copyright 2011 Intel Corporation
 
 # We have a conf and classes directory, prepend to BBPATH to prefer our versions
-BBPATH := "${LAYERDIR}:${BBPATH}"
+BBPATH .= ":${LAYERDIR}"
 
 # We have a recipes directory, add to BBFILES
-BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
+BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
 
 BBFILE_COLLECTIONS += "meta-opie"
 BBFILE_PATTERN_meta-opie := "^${LAYERDIR}/"
-- 
1.7.9.5





More information about the Openembedded-devel mailing list