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, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index ab51d8e6cd..a919f58d24 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -310,7 +310,8 @@ class CommandsSync:
310 def updateConfig(self, command, params): 310 def updateConfig(self, command, params):
311 options = params[0] 311 options = params[0]
312 environment = params[1] 312 environment = params[1]
313 command.cooker.updateConfigOpts(options, environment) 313 cmdline = params[2]
314 command.cooker.updateConfigOpts(options, environment, cmdline)
314 updateConfig.needconfig = False 315 updateConfig.needconfig = False
315 316
316 def parseConfiguration(self, command, params): 317 def parseConfiguration(self, command, params):