summaryrefslogtreecommitdiffstats
path: root/oe-init-build-env
diff options
context:
space:
mode:
Diffstat (limited to 'oe-init-build-env')
-rwxr-xr-xoe-init-build-env8
1 files changed, 0 insertions, 8 deletions
diff --git a/oe-init-build-env b/oe-init-build-env
index 5fe68d1e2a..e813230a98 100755
--- a/oe-init-build-env
+++ b/oe-init-build-env
@@ -57,11 +57,3 @@ unset OEROOT
57 57
58[ -z "$BUILDDIR" ] || cd "$BUILDDIR" 58[ -z "$BUILDDIR" ] || cd "$BUILDDIR"
59 59
60# Shutdown any bitbake server if the BBSERVER variable is not set
61if [ -z "$BBSERVER" ] && [ -f bitbake.lock ]; then
62 grep ":" bitbake.lock > /dev/null && BBSERVER=$(cat bitbake.lock) bitbake --status-only
63 if [ $? = 0 ]; then
64 echo "Shutting down bitbake memory resident server with bitbake -m"
65 BBSERVER=$(cat bitbake.lock) bitbake -m
66 fi
67fi