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.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index d11907e3ba..3902ccca71 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -138,12 +138,6 @@ class Command:
138 def reset(self): 138 def reset(self):
139 self.remotedatastores = bb.remotedata.RemoteDatastores(self.cooker) 139 self.remotedatastores = bb.remotedata.RemoteDatastores(self.cooker)
140 140
141def split_mc_pn(pn):
142 if pn.startswith("multiconfig:"):
143 _, mc, pn = pn.split(":", 2)
144 return (mc, pn)
145 return ('', pn)
146
147class CommandsSync: 141class CommandsSync:
148 """ 142 """
149 A class of synchronous commands 143 A class of synchronous commands
@@ -442,7 +436,7 @@ class CommandsSync:
442 findProviders.readonly = True 436 findProviders.readonly = True
443 437
444 def findBestProvider(self, command, params): 438 def findBestProvider(self, command, params):
445 (mc, pn) = split_mc_pn(params[0]) 439 (mc, pn) = bb.runqueue.split_mc(params[0])
446 return command.cooker.findBestProvider(pn, mc) 440 return command.cooker.findBestProvider(pn, mc)
447 findBestProvider.readonly = True 441 findBestProvider.readonly = True
448 442