summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-15 16:01:37 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-16 22:14:01 +0100
commit90dab9783dc0e8c3ebf244d89f9523c39ff2255e (patch)
tree57daa5c92a342f072086ddfa81453f5d3919ffe3 /bitbake/lib
parente1f6ebba3ab2fc8a469c1d96fc6d4c4b8f16845c (diff)
downloadast2050-yocto-poky-90dab9783dc0e8c3ebf244d89f9523c39ff2255e.zip
ast2050-yocto-poky-90dab9783dc0e8c3ebf244d89f9523c39ff2255e.tar.gz
process.py: Fix issue where early errors weren't making it to the console
(Bitbake rev: d97f7d762e3d2f1b0da038d4d99f2531b2490670) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 5c1044d..3a0706c 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -78,7 +78,6 @@ class ProcessServer(Process):
self.event_queue = event_queue
self.event = EventAdapter(event_queue)
self._idlefunctions = {}
- self.event_handle = bb.event.register_UIHhandler(self)
self.quit = False
self.keep_running = Event()
@@ -93,6 +92,7 @@ class ProcessServer(Process):
self._idlefunctions[function] = data
def run(self):
+ self.event_handle = bb.event.register_UIHhandler(self)
bb.cooker.server_main(self.cooker, self.main)
def main(self):
OpenPOWER on IntegriCloud