diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-06 22:34:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-06 22:35:55 +0000 |
commit | e9554464d42e5972a483ec992c912e6f98c4e090 (patch) | |
tree | c67e431f6e1ffb1d022b6de3556396ccabb2c5d5 /bitbake | |
parent | 003d3170edaa9472ee46111caa901ac7ddf9321c (diff) | |
download | poky-e9554464d42e5972a483ec992c912e6f98c4e090.tar.gz |
bitbake: runqueue: Fix typo
slef.self is clearly meant to be self, fix typo.
Otavio spotted and reported, thanks.
(Bitbake rev: 316daad7928a58cdfc42e27b20e739f4dd74a02a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index bc48684d78..241e387bd3 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1735,7 +1735,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1735 | dep = self.rqdata.taskData.fn_index[depdata] | 1735 | dep = self.rqdata.taskData.fn_index[depdata] |
1736 | taskid = self.rqdata.get_task_id(self.rqdata.taskData.getfn_id(dep), idependtask.replace("_setscene", "")) | 1736 | taskid = self.rqdata.get_task_id(self.rqdata.taskData.getfn_id(dep), idependtask.replace("_setscene", "")) |
1737 | if taskid is None: | 1737 | if taskid is None: |
1738 | bb.msg.fatal("RunQueue", "Task %s_setscene depends upon non-existent task %s:%s" % (self.self.rqdata.get_user_idstring(task), dep, idependtask)) | 1738 | bb.msg.fatal("RunQueue", "Task %s_setscene depends upon non-existent task %s:%s" % (self.rqdata.get_user_idstring(task), dep, idependtask)) |
1739 | 1739 | ||
1740 | if not self.rqdata.runq_setscene.index(taskid) in self.sq_harddeps: | 1740 | if not self.rqdata.runq_setscene.index(taskid) in self.sq_harddeps: |
1741 | self.sq_harddeps[self.rqdata.runq_setscene.index(taskid)] = set() | 1741 | self.sq_harddeps[self.rqdata.runq_setscene.index(taskid)] = set() |