From dabd83e96fe99d0c3d1a88be4d1637831526d217 Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Mon, 4 Nov 2013 15:00:32 -0500 Subject: [PATCH] layer.conf: prepend instead of append to sort before oe-core in BBPATH This helps avoid bblayers.conf ordering issues, when temporarily overriding files from oe-core in meta-ti. Signed-off-by: Denys Dmytriyenko --- conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index faa4ac02..e39bd85b 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -1,5 +1,5 @@ # We have a conf and classes directory, append to BBPATH -BBPATH .= ":${LAYERDIR}" +BBPATH =. "${LAYERDIR}:" # We have a recipes directory, add to BBFILES BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"