summaryrefslogtreecommitdiffstats
path: root/conf/layer.conf
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2013-01-24 22:57:41 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2013-01-27 01:01:39 +0200
commitd3ec4b12588e4cc114e7cb94df4e3309f05bbe98 (patch)
tree05710b5283787716b3b372829818a62900653c8d /conf/layer.conf
parente3e92fe9035f872e619f56426414dd93e917f3cc (diff)
downloadmeta-raspberrypi-d3ec4b12588e4cc114e7cb94df4e3309f05bbe98.tar.gz
layer.conf: fix parse
after meta-systemd commit [1] the following error was thrown during parsing: ERROR: Unable to parse /home/Superandy/data/oe-core/sources/meta-raspberrypi/conf/layer.conf: Failure expanding variable BBFILES, expression was ... which triggered exception NameError: name 'base_contains' is not defined [1] http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Diffstat (limited to 'conf/layer.conf')
-rw-r--r--conf/layer.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 32e1827..e8b87b2 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -2,7 +2,7 @@
2BBPATH .= ":${LAYERDIR}" 2BBPATH .= ":${LAYERDIR}"
3 3
4# We have a recipes directory containing .bb and .bbappend files, add to BBFILES 4# We have a recipes directory containing .bb and .bbappend files, add to BBFILES
5BBFILES := "${BBFILES} ${LAYERDIR}/recipes*/*/*.bb \ 5BBFILES += "${LAYERDIR}/recipes*/*/*.bb \
6 ${LAYERDIR}/recipes*/*/*.bbappend" 6 ${LAYERDIR}/recipes*/*/*.bbappend"
7 7
8BBFILE_COLLECTIONS += "raspberrypi" 8BBFILE_COLLECTIONS += "raspberrypi"