From cda92e27b40a40402d33bbe5f1722ca8846a7233 Mon Sep 17 00:00:00 2001 From: Dongxiao Xu Date: Sun, 1 Apr 2012 20:14:14 +0800 Subject: Hob: Remove the recipe/task type for multilib We will not display multilib recipes and tasks in separate tabs, therefore remove the specific types. (Bitbake rev: da69e665196714b0f2039c11f9f232db7b58bce3) Signed-off-by: Dongxiao Xu Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py index 52abf00eb0..5dddffa327 100644 --- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py @@ -563,10 +563,7 @@ class RecipeListModel(gtk.ListStore): depends = event_model["depends"].get(item, []) + event_model["rdepends-pn"].get(item, []) if ('task-' in name): - if ('lib32-' in name or 'lib64-' in name): - atype = 'mltask' - else: - atype = 'task' + atype = 'task' elif ('image.bbclass' in " ".join(inherits)): if name != "hob-image": atype = 'image' @@ -576,10 +573,7 @@ class RecipeListModel(gtk.ListStore): elif (name == 'dummy-image' or name == 'dummy-toolchain'): atype = 'dummy' else: - if ('lib32-' in name or 'lib64-' in name): - atype = 'mlrecipe' - else: - atype = 'recipe' + atype = 'recipe' self.set(self.append(), self.COL_NAME, item, self.COL_DESC, desc, self.COL_LIC, lic, self.COL_GROUP, group, -- cgit v1.2.3-54-g00ecf