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

git at git.openembedded.org git at git.openembedded.org
Thu Nov 24 22:09:55 UTC 2011


Module: bitbake.git
Branch: master
Commit: 035c673c463ca450245acf824e7b7e8f889bdc89
URL:    http://git.openembedded.org/?p=bitbake.git&a=commit;h=035c673c463ca450245acf824e7b7e8f889bdc89

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Thu Nov 24 14:14:55 2011 +0000

runqueue.py: Fix debug message to reference the correct task

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

---

 lib/bb/runqueue.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

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