diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-24 14:14:55 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-30 16:16:12 +0000 |
commit | f38e44bbb22f5c1ea8b53dd82522ae8d8a4f5fa2 (patch) | |
tree | 3a5e0afa358832a4c0a2971e26e359b18a330a1a | |
parent | 4d7f50382e0a749b6fc75edc9fdb7744f43b7e87 (diff) | |
download | poky-f38e44bbb22f5c1ea8b53dd82522ae8d8a4f5fa2.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 7d57fc332e..8d0b85d33a 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1515,8 +1515,9 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1515 | 1515 | ||
1516 | for task in xrange(len(self.sq_revdeps)): | 1516 | for task in xrange(len(self.sq_revdeps)): |
1517 | if task not in valid_new and task not in noexec: | 1517 | if task not in valid_new and task not in noexec: |
1518 | realtask = self.rqdata.runq_setscene[task] | ||
1518 | logger.debug(2, 'No package found, so skipping setscene task %s', | 1519 | logger.debug(2, 'No package found, so skipping setscene task %s', |
1519 | self.rqdata.get_user_idstring(task)) | 1520 | self.rqdata.get_user_idstring(realtask)) |
1520 | self.task_failoutright(task) | 1521 | self.task_failoutright(task) |
1521 | 1522 | ||
1522 | logger.info('Executing SetScene Tasks') | 1523 | logger.info('Executing SetScene Tasks') |