diff options
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index aec80e24d8..7a463a6d43 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -237,6 +237,9 @@ class TaskListModel(gtk.ListStore): | |||
237 | 237 | ||
238 | # uniquify the list of depends | 238 | # uniquify the list of depends |
239 | depends = self.squish(depends) | 239 | depends = self.squish(depends) |
240 | # remove circular dependencies | ||
241 | if name in depends: | ||
242 | depends.remove(name) | ||
240 | deps = " ".join(depends) | 243 | deps = " ".join(depends) |
241 | 244 | ||
242 | if name.count('task-') > 0: | 245 | if name.count('task-') > 0: |