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 <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2014-09-23 15:56:31 +01:00
parent b65e3e26cb
commit 177af6e831
1 changed files with 4 additions and 4 deletions

View File

@ -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