diff options
author | Rob Bradford <rob@linux.intel.com> | 2008-10-24 16:58:59 +0100 |
---|---|---|
committer | Rob Bradford <rob@linux.intel.com> | 2008-10-27 10:19:54 +0000 |
commit | 22a326547dfd80b585fa7e4ecedcdb25d54a5a86 (patch) | |
tree | 21310cc91fed71aa496d4d4e7f24ec432ddf30b2 /bitbake-dev | |
parent | c790192322c9c3ed98b13395d4980d88d394c3ff (diff) | |
download | poky-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.py | 2 |
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: | |||
650 | bb.event.fire(bb.event.BuildStarted(buildname, [item], self.configuration.event_data)) | 650 | bb.event.fire(bb.event.BuildStarted(buildname, [item], self.configuration.event_data)) |
651 | 651 | ||
652 | # Execute the runqueue | 652 | # Execute the runqueue |
653 | runlist = [[item, "do_%s" % self.configuration.cmd]] | 653 | runlist = [[item, "do_%s" % task]] |
654 | 654 | ||
655 | rq = bb.runqueue.RunQueue(self, self.configuration.data, self.status, taskdata, runlist) | 655 | rq = bb.runqueue.RunQueue(self, self.configuration.data, self.status, taskdata, runlist) |
656 | 656 | ||