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-16 07:25:01 -0700
commit4963043a05da763f5a92b21911c0b8940deb28f9 (patch)
tree2b930d0e42cc7c14ba9163433f823bce7a93d7cd
parent717a38a8e475876286bcb788d24e868cb8308737 (diff)
downloadmeta-security-4963043a05da763f5a92b21911c0b8940deb28f9.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> (cherry picked from commit 63e1cf3ffa26a4e820ec8d882e67e438aa0d23ee)
-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 b4edac3..6072e6d 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"