package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"

Value of USE_PR_SERV is either "1" or "0" looking at
settings in bitbake.conf
USE_PR_SERV = "${@[1,0][(bb.data.getVar('PRSERV_HOST',d,1) is None) or (bb.data.getVar('PRSERV_PORT',d,1) is None)]}"
So we compare the strings

(From OE-Core rev: 5f6179324ac3956ad87123005bfcab4e8f30e67b)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2011-05-27 18:27:47 -07:00 committed by Richard Purdie
parent 8611987a63
commit c412674cf8
2 changed files with 2 additions and 2 deletions

View File

@ -330,7 +330,7 @@ def runtime_mapping_rename (varname, d):
#
python package_get_auto_pr() {
if d.getVar('USE_PR_SERV', True):
if d.getVar('USE_PR_SERV', True) != "0":
auto_pr=prserv_get_pr_auto(d)
if auto_pr is None:
bb.fatal("Can NOT get auto PR revision from remote PR service")

View File

@ -12,7 +12,7 @@ def prserv_make_conn(d):
return conn
def prserv_get_pr_auto(d):
if not d.getVar('USE_PR_SERV', True):
if d.getVar('USE_PR_SERV', True) != "0":
bb.warn("Not using network based PR service")
return None