From 7dc05254f398dfaf46454eca0ed1ee3e6c4b67d5 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 5 May 2011 21:56:03 -0700 Subject: [PATCH] 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(-) diff --git a/conf/layer.conf b/conf/layer.conf index e03b819..d7bd585 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -1,9 +1,8 @@ # We have a conf and classes directory, add 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 += "angstrom-layer" BBFILE_PATTERN_angstrom-layer := "^${LAYERDIR}/"