summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2013-03-18 19:06:40 -0700
committerJoe MacDonald <joe@deserted.net>2013-10-02 13:24:45 -0400
commit637094b9f9c4a2d83d9f8ab3a6fea37d52dc33a3 (patch)
tree8bb8abed12eaa889fc5a42a8f0d94eb41d494511
parent2e7fb736e1b080d3a83ed9f44369779c96d4ba06 (diff)
downloadmeta-selinux-637094b9f9c4a2d83d9f8ab3a6fea37d52dc33a3.tar.gz
layer.conf: avoid unnecessary early expansion with :=
bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r--conf/layer.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index ca1bb46..7af76a1 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,12 +1,12 @@
1# We have a conf and classes directory, add to BBPATH 1# We have a conf and classes directory, add to BBPATH
2BBPATH := "${BBPATH}:${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} ${LAYERDIR}/recipes-*/*/*.bb \ 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bbappend" 6 ${LAYERDIR}/recipes-*/*/*.bbappend"
7 7
8BBFILE_COLLECTIONS += "selinux" 8BBFILE_COLLECTIONS += "selinux"
9BBFILE_PATTERN_selinux := "^${LAYERDIR}/" 9BBFILE_PATTERN_selinux = "^${LAYERDIR}/"
10BBFILE_PRIORITY_selinux = "5" 10BBFILE_PRIORITY_selinux = "5"
11 11
12# This should only be incremented on significant changes that will 12# This should only be incremented on significant changes that will