diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index cf9fc591de..edb4d96220 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -462,8 +462,9 @@ class TaskListModel(gtk.ListStore): | |||
462 | continue | 462 | continue |
463 | if dep_included: | 463 | if dep_included: |
464 | bin = self[path][self.COL_BINB].split(', ') | 464 | bin = self[path][self.COL_BINB].split(', ') |
465 | bin.append(name) | 465 | if not name in bin: |
466 | self[path][self.COL_BINB] = ', '.join(bin).lstrip(', ') | 466 | bin.append(name) |
467 | self[path][self.COL_BINB] = ', '.join(bin).lstrip(', ') | ||
467 | else: | 468 | else: |
468 | self.include_item(path, binb=name, image_contents=image_contents) | 469 | self.include_item(path, binb=name, image_contents=image_contents) |
469 | 470 | ||