mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
ui/crumbs/tasklistmodel: don't show native and cross recipes
Addresses [YOCTO #1224] (Bitbake rev: 80f8d796392cbf3c54149c06347c35f871fc2d79) 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
bd1b9d6cd2
commit
bcd622906e
@@ -185,6 +185,9 @@ class TaskListModel(gtk.ListStore):
|
||||
if model.get_value(it, self.COL_TYPE) != 'package':
|
||||
return False
|
||||
else:
|
||||
name = model.get_value(it, self.COL_NAME)
|
||||
if name.count('-native') or name.count('cross'):
|
||||
return False
|
||||
return True
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user