summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-06-20 17:21:15 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-20 16:26:22 +0100
commit71520c50452cbc5094d8236a405e7ef76114d18d (patch)
tree0a49429f818eb94ebb9055c590e1127f6f8e7f89 /bitbake/lib/bb/command.py
parentd3027b3e9b8cd78e0f310206b34bfdd457f63d84 (diff)
downloadpoky-71520c50452cbc5094d8236a405e7ef76114d18d.tar.gz
bitbake: bitbake: call the initConfiguration when reparsing
As it is implemented now, when parsing the configuration files is needed, it also needs an initialization. Also, implemented a function to create an extra configuration files which can be used as postfile/prefiles when parsing. (Bitbake rev: 5fe23c1b51da14f58f8c483f43f30b48766a0913) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 43dd2f4644..17276541cc 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -396,7 +396,7 @@ class CommandsAsync:
396 postfiles = params[1].split() 396 postfiles = params[1].split()
397 command.cooker.configuration.prefile = prefiles 397 command.cooker.configuration.prefile = prefiles
398 command.cooker.configuration.postfile = postfiles 398 command.cooker.configuration.postfile = postfiles
399 command.cooker.loadConfigurationData(tracking=True) 399 command.cooker.loadConfigurationData()
400 command.finishAsyncCommand() 400 command.finishAsyncCommand()
401 parseConfigurationFiles.needcache = False 401 parseConfigurationFiles.needcache = False
402 402