diff options
author | Sajjad Ahmed <sajjad_ahmed@mentor.com> | 2020-10-15 14:41:39 +0500 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2020-10-19 18:14:13 -0700 |
commit | 8bcc4d70573083f68ef00ec159881e5c2663761d (patch) | |
tree | 681db56fa5289744fac1775e3f32d11d1a1962fb | |
parent | 4c2f7ffd492c7083273aca7cc718802279f05ce2 (diff) | |
download | meta-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.conf | 3 |
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 @@ | |||
2 | BBPATH =. "${LAYERDIR}:" | 2 | BBPATH =. "${LAYERDIR}:" |
3 | 3 | ||
4 | # We have a packages directory, add to BBFILES | 4 | # We have a packages directory, add to BBFILES |
5 | BBFILES := "${BBFILES} \ | 5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ |
6 | ${LAYERDIR}/recipes-*/*/*.bb \ | ||
7 | ${LAYERDIR}/recipes-*/*/*.bbappend" | 6 | ${LAYERDIR}/recipes-*/*/*.bbappend" |
8 | 7 | ||
9 | BBFILE_COLLECTIONS += "integrity" | 8 | BBFILE_COLLECTIONS += "integrity" |