From f38e44bbb22f5c1ea8b53dd82522ae8d8a4f5fa2 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 24 Nov 2011 14:14:55 +0000 Subject: runqueue.py: Fix debug message to reference the correct task (Bitbake rev: 035c673c463ca450245acf824e7b7e8f889bdc89) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 7d57fc332e..8d0b85d33a 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1515,8 +1515,9 @@ class RunQueueExecuteScenequeue(RunQueueExecute): for task in xrange(len(self.sq_revdeps)): if task not in valid_new and task not in noexec: + realtask = self.rqdata.runq_setscene[task] logger.debug(2, 'No package found, so skipping setscene task %s', - self.rqdata.get_user_idstring(task)) + self.rqdata.get_user_idstring(realtask)) self.task_failoutright(task) logger.info('Executing SetScene Tasks') -- cgit v1.2.3-54-g00ecf