diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-05-05 21:55:31 -0700 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-06 07:33:12 +0200 |
commit | 858f3e5b642474732c12b904b1985504eb6aa680 (patch) | |
tree | 0829e54ae871955e9057f9e6c73c09d8f61d6dd3 /conf/layer.conf | |
parent | 7bcba149f05cc9c5d8ce956ee40e2c6849601470 (diff) | |
download | meta-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.conf | 5 |
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 |
2 | BBPATH := "${LAYERDIR}:${BBPATH}" | 2 | BBPATH .= ":${LAYERDIR}" |
3 | 3 | ||
4 | # We have a recipes directory, add to BBFILES | 4 | # We have a recipes directory, add to BBFILES |
5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes*/*/*.bb \ | 5 | BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" |
6 | ${LAYERDIR}/recipes*/*/*.bbappend" | ||
7 | 6 | ||
8 | BBFILE_COLLECTIONS += "meta-ti" | 7 | BBFILE_COLLECTIONS += "meta-ti" |
9 | BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/" | 8 | BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/" |