diff options
-rwxr-xr-x | scripts/oe-setup-builddir | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir index 7fefc5250..87e77103b 100755 --- a/scripts/oe-setup-builddir +++ b/scripts/oe-setup-builddir @@ -37,6 +37,8 @@ fi cd "$BUILDDIR" +TEMPLATECONF=${TEMPLATECONF:-meta/conf} + # # $TEMPLATECONF can point to a directory for the template local.conf & bblayers.conf # @@ -51,8 +53,8 @@ if [ "x" != "x$TEMPLATECONF" ]; then return fi fi - OECORELAYERCONF="$TEMPLATECONF/bblayers.conf" - OECORELOCALCONF="$TEMPLATECONF/local.conf" + OECORELAYERCONF="$TEMPLATECONF/bblayers.conf.sample" + OECORELOCALCONF="$TEMPLATECONF/local.conf.sample" fi if [ "x" = "x$OECORELOCALCONF" ]; then |