From 4f070506df3aed5d90391366895d5400d5a712c4 Mon Sep 17 00:00:00 2001 From: Bogdan Marinescu Date: Wed, 16 Jan 2013 12:36:55 +0000 Subject: bitbake: hob: fix for XMLRPC mode Contains a small fix to the builder.py code (a missing "self" in a variable assignment). With this changes, "hob" can run with the XMLRPC backend: $ hob -t xmlrpc (Bitbake rev: 3497478f803986af32099ddd124c47df8e89f6da) Signed-off-by: Bogdan Marinescu Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 07118aabd0..b5cfd9e917 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py @@ -540,7 +540,7 @@ class Builder(gtk.Window): if not self.display_sanity_check: func() else: - sanity_check_post_func = func + self.sanity_check_post_func = func def generate_configuration(self): if not self.sanity_checked: -- cgit v1.2.3-54-g00ecf