From a1e18b913ffb7e31fe1fd6f785d15dbfad365228 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 15 Jul 2011 10:15:14 -0700 Subject: ui/crumbs/tasklistmodel: fix saving recipes After switching to dynamically finding the relative path for the recipe file it's no longer to append .bb when inserting the require line into the saved recipe. Fixes [YOCTO #1247] (Bitbake rev: 2d05ce4f527daa905ed64485029ebeb2b349daa6) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bitbake/lib/bb/ui') diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index 633931dac6..e28dbe713a 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py @@ -53,11 +53,10 @@ class BuildRep(gobject.GObject): self.userpkgs = packages def writeRecipe(self, writepath, model): - # FIXME: Need a better way to determine meta_path... template = """ # Recipe generated by the HOB -require %s.bb +require %s IMAGE_INSTALL += "%s" """ -- cgit v1.2.3-54-g00ecf