summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2012-11-08 15:03:42 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-07 17:25:54 +0000
commita17b62e60464bc4dea814e99cd9d6ead31a316db (patch)
tree034e9531bffb52a7fc9557f25fe3cc09bc284f6f /bitbake
parent3b9a640f8d19cd50d64ae2722304ace80453149e (diff)
downloadpoky-a17b62e60464bc4dea814e99cd9d6ead31a316db.tar.gz
bitbake: hob: hob was freezing because it doesn't receives well the log file
-after pressing "build image" button, hob was freezing because it didn't receive well the log file [YOCTO #3398] (Bitbake rev: e0bd4c4616511ec7918f801fb5e04984ebea8158) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 82ebc7d2e0..3f2b3b02f3 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -401,7 +401,7 @@ class HobHandler(gobject.GObject):
401 self.build.reset() 401 self.build.reset()
402 402
403 def get_logfile(self): 403 def get_logfile(self):
404 return self.server.runCommand(["getVariable", "BB_CONSOLELOG"]) 404 return self.server.runCommand(["getVariable", "BB_CONSOLELOG"])[0]
405 405
406 def _remove_redundant(self, string): 406 def _remove_redundant(self, string):
407 ret = [] 407 ret = []