diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-05-27 18:27:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-29 09:40:04 +0100 |
commit | c412674cf818e77e35857fb93353e392e7ac9e53 (patch) | |
tree | 60ea6c324886a10ce6fb7b4b40e87ab3e07877cb /meta | |
parent | 8611987a63a9456ef3e0812e4162103f5f28300a (diff) | |
download | poky-c412674cf818e77e35857fb93353e392e7ac9e53.tar.gz |
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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/package.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/prserv.bbclass | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index a1b948276f..1e6a872553 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -330,7 +330,7 @@ def runtime_mapping_rename (varname, d): | |||
330 | # | 330 | # |
331 | 331 | ||
332 | python package_get_auto_pr() { | 332 | python package_get_auto_pr() { |
333 | if d.getVar('USE_PR_SERV', True): | 333 | if d.getVar('USE_PR_SERV', True) != "0": |
334 | auto_pr=prserv_get_pr_auto(d) | 334 | auto_pr=prserv_get_pr_auto(d) |
335 | if auto_pr is None: | 335 | if auto_pr is None: |
336 | bb.fatal("Can NOT get auto PR revision from remote PR service") | 336 | bb.fatal("Can NOT get auto PR revision from remote PR service") |
diff --git a/meta/classes/prserv.bbclass b/meta/classes/prserv.bbclass index de46ff6897..18b8589a7b 100644 --- a/meta/classes/prserv.bbclass +++ b/meta/classes/prserv.bbclass | |||
@@ -12,7 +12,7 @@ def prserv_make_conn(d): | |||
12 | return conn | 12 | return conn |
13 | 13 | ||
14 | def prserv_get_pr_auto(d): | 14 | def prserv_get_pr_auto(d): |
15 | if not d.getVar('USE_PR_SERV', True): | 15 | if d.getVar('USE_PR_SERV', True) != "0": |
16 | bb.warn("Not using network based PR service") | 16 | bb.warn("Not using network based PR service") |
17 | return None | 17 | return None |
18 | 18 | ||