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.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 916eedac19..cc6a981921 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -387,7 +387,9 @@ class CommandsAsync:
387 """ 387 """
388 prefiles = params[0] 388 prefiles = params[0]
389 postfiles = params[1] 389 postfiles = params[1]
390 command.cooker.databuilder.parseConfigurationFiles(prefiles, postfiles) 390 command.cooker.configuration.prefile = prefiles
391 command.cooker.configuration.postfile = postfiles
392 command.cooker.loadConfigurationData()
391 command.finishAsyncCommand() 393 command.finishAsyncCommand()
392 parseConfigurationFiles.needcache = False 394 parseConfigurationFiles.needcache = False
393 395