summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 7ca1ffdd94..c39d522c47 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1353,7 +1353,10 @@ class BBCooker:
1353 # Empty the environment. The environment will be populated as 1353 # Empty the environment. The environment will be populated as
1354 # necessary from the data store. 1354 # necessary from the data store.
1355 #bb.utils.empty_environment() 1355 #bb.utils.empty_environment()
1356 prserv.serv.auto_start(self.configuration.data) 1356 try:
1357 prserv.serv.auto_start(self.configuration.data)
1358 except prserv.serv.PRServiceConfigError:
1359 bb.event.fire(CookerExit(), self.configuration.event_data)
1357 return 1360 return
1358 1361
1359 def post_serve(self): 1362 def post_serve(self):