mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 00:32:13 +02:00
base.bbclass: Use bb.plain to print the build header
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. (From OE-Core rev: 73a3d0d337e26c2be89c215efb8a2c3dd5d5994d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user