summaryrefslogtreecommitdiffstats
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-15 16:01:37 +0100
commitd97f7d762e3d2f1b0da038d4d99f2531b2490670 (patch)
tree26f5b287964f5424c6f447d06dda7ffa805188ae
parentdbf5f42b06bef81749b13aa99945cc1292a6676d (diff)
downloadbitbake-d97f7d762e3d2f1b0da038d4d99f2531b2490670.tar.gz
process.py: Fix issue where early errors weren't making it to the console
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 5c1044dd5..3a0706c49 100644
--- a/lib/bb/server/process.py
+++ b/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):