diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2017-11-24 12:57:24 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-09 14:36:57 +0000 |
commit | 7909b258ac87d4be9bb7aba00d12fd363bd9b248 (patch) | |
tree | d700e5ae99e3d03df12295a07bf6844116cb154f | |
parent | 4704bd91458a728f28cbdc57dcf78f5d04cfd0cd (diff) | |
download | openembedded-core-7909b258ac87d4be9bb7aba00d12fd363bd9b248.tar.gz openembedded-core-7909b258ac87d4be9bb7aba00d12fd363bd9b248.tar.bz2 openembedded-core-7909b258ac87d4be9bb7aba00d12fd363bd9b248.zip |
templates/layer.conf: remove backslash to enable bbappend setting
Remove the redundant backslash in template layer.conf file, otherwise,
the bbappend line setting wouldn't have effect, causing bbappend files
in these created layers not having any effect.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/lib/bblayers/templates/layer.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/bblayers/templates/layer.conf b/meta/lib/bblayers/templates/layer.conf index e0d9ba2fde..3c0300226c 100644 --- a/meta/lib/bblayers/templates/layer.conf +++ b/meta/lib/bblayers/templates/layer.conf @@ -2,7 +2,7 @@ BBPATH .= ":${LAYERDIR}" # We have recipes-* directories, add to BBFILES -BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \\ +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ ${LAYERDIR}/recipes-*/*/*.bbappend" BBFILE_COLLECTIONS += "%s" |