mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
bb/ui/crumbs/tasklistmodel: fix find_reverse_depends method
This fixes an embarassing typo which meant the method actually returned a list of packages which didn't depend on the passed pn. (Bitbake rev: a17334e85869bf78d63df1b2336d68980a0b359f) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8ac3cec827
commit
39e90c81d7
@@ -577,7 +577,7 @@ class TaskListModel(gtk.ListStore):
|
||||
if not itype == 'package':
|
||||
continue
|
||||
|
||||
if pn not in deps:
|
||||
if pn in deps:
|
||||
revdeps.append(name)
|
||||
|
||||
if pn in revdeps:
|
||||
|
||||
Reference in New Issue
Block a user