[bitbake-devel] [PATCH] runqueue.py: Fix debug message to reference the correct task

Richard Purdie richard.purdie at linuxfoundation.org
Thu Nov 24 14:51:43 UTC 2011


Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index f5598ca..1800634 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1524,8 +1524,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')





More information about the bitbake-devel mailing list