diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index 5ff1f5a6bb..cf9fc591de 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py @@ -441,8 +441,9 @@ class TaskListModel(gtk.ListStore): self[item_path][self.COL_INC] = True bin = self[item_path][self.COL_BINB].split(', ') - bin.append(binb) - self[item_path][self.COL_BINB] = ', '.join(bin).lstrip(', ') + if not binb in bin: + bin.append(binb) + self[item_path][self.COL_BINB] = ', '.join(bin).lstrip(', ') # We want to do some magic with things which are brought in by the # base image so tag them as so