diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index 3921581139..5ff1f5a6bb 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -577,7 +577,7 @@ class TaskListModel(gtk.ListStore): | |||
577 | if not itype == 'package': | 577 | if not itype == 'package': |
578 | continue | 578 | continue |
579 | 579 | ||
580 | if pn not in deps: | 580 | if pn in deps: |
581 | revdeps.append(name) | 581 | revdeps.append(name) |
582 | 582 | ||
583 | if pn in revdeps: | 583 | if pn in revdeps: |