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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 5442f7d225..1f4cc1e96d 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1679,7 +1679,8 @@ class BBCooker:
1679 if self.hashserv: 1679 if self.hashserv:
1680 self.hashserv.process.terminate() 1680 self.hashserv.process.terminate()
1681 self.hashserv.process.join() 1681 self.hashserv.process.join()
1682 bb.event.fire(CookerExit(), self.data) 1682 if hasattr(self, "data"):
1683 bb.event.fire(CookerExit(), self.data)
1683 1684
1684 def shutdown(self, force = False): 1685 def shutdown(self, force = False):
1685 if force: 1686 if force: