diff options
Diffstat (limited to 'oe-init-build-env-memres')
-rwxr-xr-x | oe-init-build-env-memres | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/oe-init-build-env-memres b/oe-init-build-env-memres index 00079989dc6..9b9e0f44b00 100755 --- a/oe-init-build-env-memres +++ b/oe-init-build-env-memres @@ -60,14 +60,14 @@ if [ -e bitbake.lock ] && grep : bitbake.lock > /dev/null ; then res=$? fi +if [ $res != 0 ] ; then + bitbake --server-only -t xmlrpc -B localhost:$port +fi + if [ $port = -1 ] ; then export BBSERVER=localhost:-1 echo "Bitbake server started on demand as needed, use bitbake -m to shut it down" else - if [ $res != 0 ] ; then - bitbake --server-only -t xmlrpc -B localhost:$port - fi - export BBSERVER=`cat bitbake.lock` if [ $res = 0 ] ; then |