aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake-dev
diff options
context:
space:
mode:
authorRob Bradford <rob@linux.intel.com>2008-10-24 16:58:59 +0100
committerRob Bradford <rob@linux.intel.com>2008-10-27 10:19:54 +0000
commit22a326547dfd80b585fa7e4ecedcdb25d54a5a86 (patch)
tree21310cc91fed71aa496d4d4e7f24ec432ddf30b2 /bitbake-dev
parentc790192322c9c3ed98b13395d4980d88d394c3ff (diff)
downloadopenembedded-core-contrib-22a326547dfd80b585fa7e4ecedcdb25d54a5a86.tar.gz
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.
Diffstat (limited to 'bitbake-dev')
-rw-r--r--bitbake-dev/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
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)