From 49f127827d6ade9efeec29bb241f59d33228300e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 22 May 2013 14:55:14 +0000 Subject: [PATCH] bitbake: command: Fix function module reference after code rearrangement (Bitbake rev: ff9f62fd5f76892ad41a5329b75472501e17e712) Signed-off-by: Richard Purdie --- bitbake/lib/bb/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 29d31d5985..916eedac19 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -387,7 +387,7 @@ class CommandsAsync: """ prefiles = params[0] postfiles = params[1] - command.cooker.parseConfigurationFiles(prefiles, postfiles) + command.cooker.databuilder.parseConfigurationFiles(prefiles, postfiles) command.finishAsyncCommand() parseConfigurationFiles.needcache = False