From 858f3e5b642474732c12b904b1985504eb6aa680 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 5 May 2011 21:55:31 -0700 Subject: conf/layer.conf: Use .= to append to BBPATH and += for BBFILES Signed-off-by: Khem Raj Signed-off-by: Koen Kooi --- conf/layer.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'conf/layer.conf') diff --git a/conf/layer.conf b/conf/layer.conf index 2af1a6ed..fbe529f2 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -1,9 +1,8 @@ # We have a conf and classes directory, prepend to BBPATH -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-ti" BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/" -- cgit v1.2.3-54-g00ecf