From 637094b9f9c4a2d83d9f8ab3a6fea37d52dc33a3 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Mon, 18 Mar 2013 19:06:40 -0700 Subject: layer.conf: avoid unnecessary early expansion with := bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson Signed-off-by: Joe MacDonald --- conf/layer.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/layer.conf b/conf/layer.conf index ca1bb46..7af76a1 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -1,12 +1,12 @@ # 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}/recipes-*/*/*.bb \ +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ ${LAYERDIR}/recipes-*/*/*.bbappend" BBFILE_COLLECTIONS += "selinux" -BBFILE_PATTERN_selinux := "^${LAYERDIR}/" +BBFILE_PATTERN_selinux = "^${LAYERDIR}/" BBFILE_PRIORITY_selinux = "5" # This should only be incremented on significant changes that will -- cgit v1.2.3-54-g00ecf