aboutsummaryrefslogtreecommitdiffstats
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
parent7bcba149f05cc9c5d8ce956ee40e2c6849601470 (diff)
downloadopenembedded-core-contrib-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>
-rw-r--r--conf/layer.conf5
1 files changed, 2 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 2af1a6ed59..fbe529f289 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,9 +1,8 @@
# We have a conf and classes directory, prepend to BBPATH
-BBPATH := "${LAYERDIR}:${BBPATH}"
+BBPATH .= ":${LAYERDIR}"
# We have a recipes directory, add to BBFILES
-BBFILES := "${BBFILES} ${LAYERDIR}/recipes*/*/*.bb \
- ${LAYERDIR}/recipes*/*/*.bbappend"
+BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
BBFILE_COLLECTIONS += "meta-ti"
BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/"