diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-09-22 17:21:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-22 18:12:52 +0100 |
commit | 87bedd137a77c5ac0033a1de4587c40dbe93e81d (patch) | |
tree | d74f2dd5f2cec25283bd6b00d80910c87e4f6b5a /meta/classes/externalsrc.bbclass | |
parent | ee4aadd179be8141536f2fae16482683855a9a37 (diff) | |
download | openembedded-core-87bedd137a77c5ac0033a1de4587c40dbe93e81d.tar.gz openembedded-core-87bedd137a77c5ac0033a1de4587c40dbe93e81d.tar.bz2 openembedded-core-87bedd137a77c5ac0033a1de4587c40dbe93e81d.zip |
classes/externalsrc: scale back warning to a plain note
It turns out that there are folks out there who use externalsrc in
normal builds and don't really need to be warned; additionally within
the extensible SDK or when using devtool, it shouldn't be a warning
situation. Thus, scale it back to a note (we can't use bb.note() here
since that wouldn't actually be piped through to the bitbake UI). Also
touch up the message a little bit.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/externalsrc.bbclass')
-rw-r--r-- | meta/classes/externalsrc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass index 0fa5817d9a..70e6fd76b3 100644 --- a/meta/classes/externalsrc.bbclass +++ b/meta/classes/externalsrc.bbclass @@ -88,5 +88,5 @@ python () { python externalsrc_compile_prefunc() { # Make it obvious that this is happening, since forgetting about it could lead to much confusion - bb.warn('Compiling %s from external source %s' % (d.getVar('PN', True), d.getVar('EXTERNALSRC', True))) + bb.plain('NOTE: %s: compiling from external source tree %s' % (d.getVar('PN', True), d.getVar('EXTERNALSRC', True))) } |