From: Rob Bradford Date: Fri, 24 Oct 2008 15:58:59 +0000 (+0100) Subject: bitbake-dev: Make the "buildFile" command use the task parameter X-Git-Tag: 2011-1~7944 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=22a326547dfd80b585fa7e4ecedcdb25d54a5a86;p=openembedded-core.git 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. --- 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)