From bbc9aafbbf902f036e5bb54b4fe17f46b3079700 Mon Sep 17 00:00:00 2001 From: Irina Patru Date: Tue, 8 Apr 2014 14:59:30 +0300 Subject: bitbake: hob: add "recipes/images/" to BBFILES when Hob is launched The path for "recipes/images/" was not added in BBFILES when Hob had to search for an image recipe. Therefore, it could not find it and an error occurred. This path needs to be added when Hob is launched. [HOB #6086] (Bitbake rev: 35c67281775b08925957c32663d587d486944e0e) Signed-off-by: Irina Patru Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/builder.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib/bb/ui/crumbs/builder.py') diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 3033e77444..455af320e8 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py @@ -447,6 +447,7 @@ class Builder(gtk.Window): self.handler.connect("package-populated", self.handler_package_populated_cb) self.handler.append_to_bbfiles("${TOPDIR}/recipes/images/custom/*.bb") + self.handler.append_to_bbfiles("${TOPDIR}/recipes/images/*.bb") self.initiate_new_build_async() signal.signal(signal.SIGINT, self.event_handle_SIGINT) -- cgit v1.2.3-54-g00ecf