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.
This commit is contained in:
Rob Bradford 2008-10-24 16:58:59 +01:00
parent c790192322
commit 22a326547d
1 changed files with 1 additions and 1 deletions

View File

@ -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)