summaryrefslogtreecommitdiffstats
path: root/conf/layer.conf
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-05-05 21:55:31 -0700
committerKoen Kooi <koen@dominion.thruhere.net>2011-05-06 07:33:12 +0200
commit858f3e5b642474732c12b904b1985504eb6aa680 (patch)
tree0829e54ae871955e9057f9e6c73c09d8f61d6dd3 /conf/layer.conf
parent7bcba149f05cc9c5d8ce956ee40e2c6849601470 (diff)
downloadmeta-ti-858f3e5b642474732c12b904b1985504eb6aa680.tar.gz
conf/layer.conf: Use .= to append to BBPATH and += for BBFILES
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'conf/layer.conf')
-rw-r--r--conf/layer.conf5
1 files changed, 2 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 2af1a6ed..fbe529f2 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,9 +1,8 @@
1# We have a conf and classes directory, prepend to BBPATH 1# We have a conf and classes directory, prepend to BBPATH
2BBPATH := "${LAYERDIR}:${BBPATH}" 2BBPATH .= ":${LAYERDIR}"
3 3
4# We have a recipes directory, add to BBFILES 4# We have a recipes directory, add to BBFILES
5BBFILES := "${BBFILES} ${LAYERDIR}/recipes*/*/*.bb \ 5BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
6 ${LAYERDIR}/recipes*/*/*.bbappend"
7 6
8BBFILE_COLLECTIONS += "meta-ti" 7BBFILE_COLLECTIONS += "meta-ti"
9BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/" 8BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/"