From 25f4a0e362aa18f060297775aa4591acc8d2b12f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 5 May 2011 22:00:53 -0700 Subject: conf/layer.conf: Use .= to append to BBPATH and += for BBFILES This helps bitbake in organising BBPATH and BBFILES with given BBFILE_PRIORITY order (From OE-Core rev: 74c4c97cda7fbda68f8e6985eaad1c0e20998429) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/conf/layer.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'meta/conf/layer.conf') diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 5287417717..3f63c7dd51 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -1,9 +1,8 @@ BBPATH ?= "" # We have a conf and classes directory, add to BBPATH -BBPATH := "${BBPATH}:${LAYERDIR}" - +BBPATH .= ":${LAYERDIR}" # We have a packages directory, add to BBFILES -BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb ${LAYERDIR}/recipes-*/*/*.bb" +BBFILES += "${LAYERDIR}/packages/*/*.bb ${LAYERDIR}/recipes-*/*/*.bb" BBFILE_COLLECTIONS += "normal" BBFILE_PATTERN_normal := "^${LAYERDIR}/" -- cgit v1.2.3-54-g00ecf