diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-24 14:14:55 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-24 22:11:44 +0000 |
commit | ddd3f56ded66622cbee0e394947803e80ddebf65 (patch) | |
tree | a6378532645acf3b22c4c07dd510747a4bb1eac6 | |
parent | 8b0a893e75c9d54c2cd90e10f22e072bd5711422 (diff) | |
download | poky-ddd3f56ded66622cbee0e394947803e80ddebf65.tar.gz |
runqueue.py: Fix debug message to reference the correct task
(Bitbake rev: 035c673c463ca450245acf824e7b7e8f889bdc89)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 256f4e30ce..3fc384d5bb 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1519,8 +1519,9 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1519 | 1519 | ||
1520 | for task in xrange(len(self.sq_revdeps)): | 1520 | for task in xrange(len(self.sq_revdeps)): |
1521 | if task not in valid_new and task not in noexec: | 1521 | if task not in valid_new and task not in noexec: |
1522 | realtask = self.rqdata.runq_setscene[task] | ||
1522 | logger.debug(2, 'No package found, so skipping setscene task %s', | 1523 | logger.debug(2, 'No package found, so skipping setscene task %s', |
1523 | self.rqdata.get_user_idstring(task)) | 1524 | self.rqdata.get_user_idstring(realtask)) |
1524 | self.task_failoutright(task) | 1525 | self.task_failoutright(task) |
1525 | 1526 | ||
1526 | logger.info('Executing SetScene Tasks') | 1527 | logger.info('Executing SetScene Tasks') |