From: Richard Purdie Date: Tue, 23 Sep 2014 14:56:31 +0000 (+0100) Subject: oe-init-build-env-memres: Fix automatic port usage X-Git-Tag: rev_ivi_2015_02_04~6581 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12fbbc992f320a6bb7f9f885732f6b0adb1317a4;p=scm%2Fbb%2Ftizen-distro.git oe-init-build-env-memres: Fix automatic port usage The use of an automatic port wasn't working correctly since the server was never getting started when port == -1. This fixes things so the server is started when port is not specified (i.e. automatic) ensuring this happens before BBSERVER is set. [YOCTO #6563] (From OE-Core rev: 982553b6d56ca4bfd095c1bcb736ae3b77deefa7) Signed-off-by: Richard Purdie --- diff --git a/oe-init-build-env-memres b/oe-init-build-env-memres index 0007998..9b9e0f4 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