summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSajjad Ahmed <sajjad_ahmed@mentor.com>2020-10-15 14:41:39 +0500
committerArmin Kuster <akuster808@gmail.com>2020-10-19 18:14:13 -0700
commit8bcc4d70573083f68ef00ec159881e5c2663761d (patch)
tree681db56fa5289744fac1775e3f32d11d1a1962fb
parent4c2f7ffd492c7083273aca7cc718802279f05ce2 (diff)
downloadmeta-security-8bcc4d70573083f68ef00ec159881e5c2663761d.tar.gz
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 <sajjad_ahmed@mentor.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-integrity/conf/layer.conf3
1 files changed, 1 insertions, 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 @@
2BBPATH =. "${LAYERDIR}:" 2BBPATH =. "${LAYERDIR}:"
3 3
4# We have a packages directory, add to BBFILES 4# We have a packages directory, add to BBFILES
5BBFILES := "${BBFILES} \ 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bb \
7 ${LAYERDIR}/recipes-*/*/*.bbappend" 6 ${LAYERDIR}/recipes-*/*/*.bbappend"
8 7
9BBFILE_COLLECTIONS += "integrity" 8BBFILE_COLLECTIONS += "integrity"