diff options
Diffstat (limited to 'bitbake/lib/prserv')
| -rw-r--r-- | bitbake/lib/prserv/serv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/prserv/serv.py b/bitbake/lib/prserv/serv.py index fa437f964c..5567c6f574 100644 --- a/bitbake/lib/prserv/serv.py +++ b/bitbake/lib/prserv/serv.py | |||
| @@ -268,7 +268,7 @@ def is_local_special(host, port): | |||
| 268 | 268 | ||
| 269 | def auto_start(d): | 269 | def auto_start(d): |
| 270 | global singleton | 270 | global singleton |
| 271 | if d.getVar('USE_PR_SERV', True) == '0': | 271 | if (not d.getVar('PRSERV_HOST', True)) or (not d.getVar('PRSERV_PORT', True)): |
| 272 | return True | 272 | return True |
| 273 | 273 | ||
| 274 | if is_local_special(d.getVar('PRSERV_HOST', True), int(d.getVar('PRSERV_PORT', True))) and not singleton: | 274 | if is_local_special(d.getVar('PRSERV_HOST', True), int(d.getVar('PRSERV_PORT', True))) and not singleton: |
