diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-21 14:40:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-21 16:55:11 +0000 |
commit | 9320b76a97aeb2efe7195f438c9f44aae6e2d81d (patch) | |
tree | 7b8099e457680979ca2fcb57e994167ba0b45a32 /bitbake | |
parent | 14fbf3eab413e844663cdb629857602bae11b71e (diff) | |
download | poky-9320b76a97aeb2efe7195f438c9f44aae6e2d81d.tar.gz |
bitbake/runqueue.py: Sort the list of skipped tasks as it makes searching the list easier when debugging
(From Poky rev: 5de8a495fba657e1febc616bbc737a8136cc88f9)
(Bitbake rev: 110f6cccbcc5907e15262c05d5c47da101e1a47d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index a13c62c26c..d82ce36348 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1633,7 +1633,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1633 | for task in oldcovered: | 1633 | for task in oldcovered: |
1634 | self.rq.scenequeue_covered.add(self.rqdata.runq_setscene[task]) | 1634 | self.rq.scenequeue_covered.add(self.rqdata.runq_setscene[task]) |
1635 | 1635 | ||
1636 | logger.debug(1, 'We can skip tasks %s', self.rq.scenequeue_covered) | 1636 | logger.debug(1, 'We can skip tasks %s', sorted(self.rq.scenequeue_covered)) |
1637 | 1637 | ||
1638 | self.rq.state = runQueueRunInit | 1638 | self.rq.state = runQueueRunInit |
1639 | return True | 1639 | return True |