aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-01-22 13:57:36 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-01-22 13:57:36 +0000
commit386378458b7ed21562ad6f703789bbaaaf46ba51 (patch)
tree6726248a5310f64d2fc42118c17adc668140a8d2 /conf
parent93df88a1cc88c4db2616b9e31aa13477f2c7f63e (diff)
downloadmeta-opie-386378458b7ed21562ad6f703789bbaaaf46ba51.tar.gz
layer.conf: fix parsing with recent change to meta-systemd
Fixes parsing errors which is appearing after the following commit: http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e Without this change, you get "NameError: name 'base_contains' is not defined". Based upon a patch by Khem Raj <raj.khem@gmail.com>, the only change being prepending to BBPATH as was done previously. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/layer.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 4d900c9..dd1661d 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -2,10 +2,10 @@
# Copyright 2011 Intel Corporation
# We have a conf and classes directory, prepend to BBPATH to prefer our versions
-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-opie"
BBFILE_PATTERN_meta-opie := "^${LAYERDIR}/"