diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2013-11-19 10:53:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-20 14:06:49 +0000 |
commit | 725fae65810c477882f7f9d02561362b3f603db0 (patch) | |
tree | cbdf7e5c399f839e057d163857ca193db3a1c6ca /bitbake/lib/bb | |
parent | e19ee57c962dfa7ce7802e27e16daea53f3052a3 (diff) | |
download | poky-725fae65810c477882f7f9d02561362b3f603db0.tar.gz |
bitbake: toasterui: fix typo
A typo in buildinfo helper leads to a bug where
information about tasks is not correctly stored.
This patch fixes the typo.
(Bitbake rev: 67b752993a2c64cba9ccc4fa662f0bddf081e74a)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index 170ee12a7e..2c9d77abb3 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/lib/bb/ui/buildinfohelper.py | |||
@@ -543,7 +543,7 @@ class BuildInfoHelper(object): | |||
543 | task_information['disk_io'] = task_build_stats['disk_io'] | 543 | task_information['disk_io'] = task_build_stats['disk_io'] |
544 | del self.internal_state[identifier] | 544 | del self.internal_state[identifier] |
545 | 545 | ||
546 | if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runCommand.sceneQueueTaskFailed)): | 546 | if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runqueue.sceneQueueTaskFailed)): |
547 | task_information['outcome'] = Task.OUTCOME_FAILED | 547 | task_information['outcome'] = Task.OUTCOME_FAILED |
548 | del self.internal_state[identifier] | 548 | del self.internal_state[identifier] |
549 | 549 | ||