From 22a326547dfd80b585fa7e4ecedcdb25d54a5a86 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 24 Oct 2008 16:58:59 +0100 Subject: bitbake-dev: Make the "buildFile" command use the task parameter The "buildFile" command has a task parameter use it place of self.configuration.cmd when adding to the runqueue. --- bitbake-dev/lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake-dev') diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py index 5e3cccbdb6..0fed1ba842 100644 --- a/bitbake-dev/lib/bb/cooker.py +++ b/bitbake-dev/lib/bb/cooker.py @@ -650,7 +650,7 @@ class BBCooker: bb.event.fire(bb.event.BuildStarted(buildname, [item], self.configuration.event_data)) # Execute the runqueue - runlist = [[item, "do_%s" % self.configuration.cmd]] + runlist = [[item, "do_%s" % task]] rq = bb.runqueue.RunQueue(self, self.configuration.data, self.status, taskdata, runlist) -- cgit v1.2.3-54-g00ecf