From 4963043a05da763f5a92b21911c0b8940deb28f9 Mon Sep 17 00:00:00 2001 From: Sajjad Ahmed Date: Thu, 15 Oct 2020 14:41:39 +0500 Subject: layer.conf: use += instead of := to update BBFILES Updating BBFILES with := isn't the standard way and can break parsing under certain conditions, instead use += which is widely used. Signed-off-by: Sajjad Ahmed Signed-off-by: Armin Kuster (cherry picked from commit 63e1cf3ffa26a4e820ec8d882e67e438aa0d23ee) --- meta-integrity/conf/layer.conf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta-integrity/conf/layer.conf b/meta-integrity/conf/layer.conf index b4edac3..6072e6d 100644 --- a/meta-integrity/conf/layer.conf +++ b/meta-integrity/conf/layer.conf @@ -2,8 +2,7 @@ BBPATH =. "${LAYERDIR}:" # We have a packages directory, add to BBFILES -BBFILES := "${BBFILES} \ - ${LAYERDIR}/recipes-*/*/*.bb \ +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ ${LAYERDIR}/recipes-*/*/*.bbappend" BBFILE_COLLECTIONS += "integrity" -- cgit v1.2.3-54-g00ecf