summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-21 14:39:29 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-30 16:16:11 +0000
commitc2662a50956ad417667385a7d1df63f34ef3e418 (patch)
tree7112bc9905ce03f72eef24577447e27f18f531bd /bitbake/lib
parentda56e3df881e1198fbcc8c513fe09da59ac88674 (diff)
downloadpoky-c2662a50956ad417667385a7d1df63f34ef3e418.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/lib')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 675f830712..93b65741ee 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1585,7 +1585,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
1585 taskname = self.rqdata.runq_task[realtask] + "_setscene" 1585 taskname = self.rqdata.runq_task[realtask] + "_setscene"
1586 if self.rq.check_stamp_task(realtask, self.rqdata.runq_task[realtask]): 1586 if self.rq.check_stamp_task(realtask, self.rqdata.runq_task[realtask]):
1587 logger.debug(2, 'Stamp for underlying task %s(%s) is current, so skipping setscene variant', 1587 logger.debug(2, 'Stamp for underlying task %s(%s) is current, so skipping setscene variant',
1588 task, self.rqdata.get_user_idstring(task)) 1588 task, self.rqdata.get_user_idstring(realtask))
1589 self.task_failoutright(task) 1589 self.task_failoutright(task)
1590 return True 1590 return True
1591 1591