From patchwork Thu Nov 24 14:57:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: base.bbclass: Use bb.plain to print the build header Date: Thu, 24 Nov 2011 14:57:25 -0000 From: Richard Purdie X-Patchwork-Id: 15411 Message-Id: <1322146645.10818.0.camel@ted> To: openembedded-core If we just use print, the bitbake logging functions don't see the message and it can get lost if bitbake is for example logging messages to disk. Signed-off-by: Richard Purdie Acked-by: Darren Hart --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index ba1f230..72196d6 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -232,7 +232,7 @@ python base_eventhandler() { statuslines += layers_branch_rev statusmsg = "\nOE Build Configuration:\n%s\n" % '\n'.join(statuslines) - print statusmsg + bb.plain(statusmsg) needed_vars = [ "TARGET_ARCH", "TARGET_OS" ] pesteruser = []