summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>2013-01-16 12:36:55 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-14 14:57:27 +0300
commit4f070506df3aed5d90391366895d5400d5a712c4 (patch)
treefb6b4cfffb0d7c316717f5c8cdd62b4e620fd05e /bitbake
parentf0457e54361eaa12dd962ea0b4533904c9647eaa (diff)
downloadpoky-4f070506df3aed5d90391366895d5400d5a712c4.tar.gz
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 <bogdan.a.marinescu@intel.com> Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/builder.py2
1 files changed, 1 insertions, 1 deletions
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):
540 if not self.display_sanity_check: 540 if not self.display_sanity_check:
541 func() 541 func()
542 else: 542 else:
543 sanity_check_post_func = func 543 self.sanity_check_post_func = func
544 544
545 def generate_configuration(self): 545 def generate_configuration(self):
546 if not self.sanity_checked: 546 if not self.sanity_checked: