summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 0d0354c30f..6c966e3dbc 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -145,6 +145,9 @@ class Command:
145 self.currentAsyncCommand = None 145 self.currentAsyncCommand = None
146 self.cooker.finishcommand() 146 self.cooker.finishcommand()
147 147
148 def reset(self):
149 self.remotedatastores = bb.remotedata.RemoteDatastores(self.cooker)
150
148def split_mc_pn(pn): 151def split_mc_pn(pn):
149 if pn.startswith("multiconfig:"): 152 if pn.startswith("multiconfig:"):
150 _, mc, pn = pn.split(":", 2) 153 _, mc, pn = pn.split(":", 2)