diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-21 14:39:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-21 16:55:11 +0000 |
commit | 14fbf3eab413e844663cdb629857602bae11b71e (patch) | |
tree | 6a17d93f38077bdcbd3112f9f28af930a6d2214e /bitbake | |
parent | e1c0d9b12c2e7df27d49cb42fa20e1730c53dd76 (diff) | |
download | poky-14fbf3eab413e844663cdb629857602bae11b71e.tar.gz |
bitbake/runqueue.py: Fix incorrect task number reference in debug message
(From Poky rev: 45887bbd5479041be05b914668f14de6ec9b9831)
(Bitbake rev: dc4439ca8c7db7ceee78bd0552f65ceddcff17a7)
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 e691fc2416..a13c62c26c 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1591,7 +1591,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1591 | taskname = self.rqdata.runq_task[realtask] + "_setscene" | 1591 | taskname = self.rqdata.runq_task[realtask] + "_setscene" |
1592 | if self.rq.check_stamp_task(realtask, self.rqdata.runq_task[realtask]): | 1592 | if self.rq.check_stamp_task(realtask, self.rqdata.runq_task[realtask]): |
1593 | logger.debug(2, 'Stamp for underlying task %s(%s) is current, so skipping setscene variant', | 1593 | logger.debug(2, 'Stamp for underlying task %s(%s) is current, so skipping setscene variant', |
1594 | task, self.rqdata.get_user_idstring(task)) | 1594 | task, self.rqdata.get_user_idstring(realtask)) |
1595 | self.task_failoutright(task) | 1595 | self.task_failoutright(task) |
1596 | return True | 1596 | return True |
1597 | 1597 | ||