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.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 5e5708ee2b..2614c4485a 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1725,6 +1725,13 @@ class BBCooker:
1725 def reset(self): 1725 def reset(self):
1726 self.initConfigurationData() 1726 self.initConfigurationData()
1727 1727
1728 def clientComplete(self):
1729 """Called when the client is done using the server"""
1730 if self.configuration.server_only:
1731 self.finishcommand()
1732 else:
1733 self.shutdown(True)
1734
1728 def lockBitbake(self): 1735 def lockBitbake(self):
1729 if not hasattr(self, 'lock'): 1736 if not hasattr(self, 'lock'):
1730 self.lock = None 1737 self.lock = None