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>
#
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")
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