summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/ncurses.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-15 17:29:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-15 17:31:52 +0100
commita21ff559e7c93e9da61104f4a33e42e6004189fd (patch)
tree0f71f9cdd87c3ddacacd58732791501392bff5ed /bitbake/lib/bb/ui/ncurses.py
parenta7e4747f499d4219c29277e80e64e4fdf604628a (diff)
downloadpoky-a21ff559e7c93e9da61104f4a33e42e6004189fd.tar.gz
Fixup remaining bb.msg.domain users
(Bitbake rev: d5abdacaf9ac604ef8d8c1bafb9b30617827cb4f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/ncurses.py')
-rw-r--r--bitbake/lib/bb/ui/ncurses.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/ncurses.py b/bitbake/lib/bb/ui/ncurses.py
index 8684697aa2..8524446d22 100644
--- a/bitbake/lib/bb/ui/ncurses.py
+++ b/bitbake/lib/bb/ui/ncurses.py
@@ -283,7 +283,7 @@ class NCursesUI:
283# if isinstance(event, bb.build.TaskFailed): 283# if isinstance(event, bb.build.TaskFailed):
284# if event.logfile: 284# if event.logfile:
285# if data.getVar("BBINCLUDELOGS", d): 285# if data.getVar("BBINCLUDELOGS", d):
286# bb.msg.error(bb.msg.domain.Build, "log data follows (%s)" % logfile) 286# bb.error("log data follows (%s)" % logfile)
287# number_of_lines = data.getVar("BBINCLUDELOGS_LINES", d) 287# number_of_lines = data.getVar("BBINCLUDELOGS_LINES", d)
288# if number_of_lines: 288# if number_of_lines:
289# os.system('tail -n%s %s' % (number_of_lines, logfile)) 289# os.system('tail -n%s %s' % (number_of_lines, logfile))
@@ -297,7 +297,7 @@ class NCursesUI:
297# print '| %s' % l 297# print '| %s' % l
298# f.close() 298# f.close()
299# else: 299# else:
300# bb.msg.error(bb.msg.domain.Build, "see log in %s" % logfile) 300# bb.error("see log in %s" % logfile)
301 301
302 if isinstance(event, bb.command.CommandCompleted): 302 if isinstance(event, bb.command.CommandCompleted):
303 # stop so the user can see the result of the build, but 303 # stop so the user can see the result of the build, but