summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoonas Lahtinen <joonas.lahtinen@linux.intel.com>2015-10-20 11:43:23 +0300
committerSaul Wold <sgw@linux.intel.com>2015-10-27 08:07:02 -0700
commit4a761ccaf17f405807089ce2a4629d44d77d8151 (patch)
tree511c03ae1df68c4e00524c47fee9d6d622efb5e0
parent42cd81d2058e957b0dd223f6017687e134f6c21f (diff)
downloadmeta-intel-4a761ccaf17f405807089ce2a4629d44d77d8151.tar.gz
conf: Add a direct path to common recipes
By adding the direct path to recipes in common directories we allow upper layers to further extend the recipes. Without the patch the extending recipes look like this: require common/recipes-foo/bar/baz.inc With this patch the include can be written like in other layers: require recipes-foo/bar/baz.inc Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r--conf/layer.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index f419fe63..d8e5000d 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,5 +1,5 @@
1# We have a conf and classes directory, add to BBPATH 1# We have a conf and classes directory, add to BBPATH
2BBPATH .= ":${LAYERDIR}" 2BBPATH .= ":${LAYERDIR}:${LAYERDIR}/common"
3 3
4# We have recipes-* directories, add to BBFILES 4# We have recipes-* directories, add to BBFILES
5BBFILES += "${LAYERDIR}/common/recipes-*/*/*.bb \ 5BBFILES += "${LAYERDIR}/common/recipes-*/*/*.bb \