summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xoe-init-build-env5
1 files changed, 4 insertions, 1 deletions
diff --git a/oe-init-build-env b/oe-init-build-env
index 68af7b5193..de9692fe44 100755
--- a/oe-init-build-env
+++ b/oe-init-build-env
@@ -35,7 +35,10 @@ else
35 else 35 else
36 OEROOT="`pwd`" 36 OEROOT="`pwd`"
37 fi 37 fi
38 OEROOT=`readlink -f "$OEROOT"` 38 if [ -n "$BBSERVER" ]; then
39 unset BBSERVER
40 fi
41 OEROOT=`readlink -f "$OEROOT"`
39 export OEROOT 42 export OEROOT
40 . $OEROOT/scripts/oe-buildenv-internal && \ 43 . $OEROOT/scripts/oe-buildenv-internal && \
41 $OEROOT/scripts/oe-setup-builddir && \ 44 $OEROOT/scripts/oe-setup-builddir && \