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 60f9ac08aa..29b0a53e98 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -273,7 +273,8 @@ class CommandsSync:
273 273
274 def updateConfig(self, command, params): 274 def updateConfig(self, command, params):
275 options = params[0] 275 options = params[0]
276 command.cooker.updateConfigOpts(options) 276 environment = params[1]
277 command.cooker.updateConfigOpts(options, environment)
277 278
278class CommandsAsync: 279class CommandsAsync:
279 """ 280 """