summaryrefslogtreecommitdiffstats
path: root/scripts/oe-setup-builddir
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-setup-builddir')
-rwxr-xr-xscripts/oe-setup-builddir5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir
index d5d8d980d3..adb55c7c38 100755
--- a/scripts/oe-setup-builddir
+++ b/scripts/oe-setup-builddir
@@ -101,7 +101,10 @@ EOM
101 101
102 # Put the abosolute path to the layers in bblayers.conf so we can run 102 # Put the abosolute path to the layers in bblayers.conf so we can run
103 # bitbake without the init script after the first run 103 # bitbake without the init script after the first run
104 sed "s|##COREBASE##|$OEROOT|g" $OECORELAYERCONF > $BUILDDIR/conf/bblayers.conf 104 sed "s|##OEROOT##|$OEROOT|g" $OECORELAYERCONF > $BUILDDIR/conf/bblayers.conf
105 # ##COREBASE## is deprecated as it's meaning was inconsistent, but continue
106 # to replace it for compatibility.
107 sed -i -e "s|##COREBASE##|$OEROOT|g" $BUILDDIR/conf/bblayers.conf
105fi 108fi
106 109
107# Prevent disturbing a new GIT clone in same console 110# Prevent disturbing a new GIT clone in same console