From 8bcc4d70573083f68ef00ec159881e5c2663761d 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 --- 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 f905b0b..6075df9 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