summaryrefslogtreecommitdiffstats
path: root/meta/classes/externalsrc.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-09-22 17:21:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-23 09:53:13 +0100
commit586291fe2bb1939bd77ab3c8666e5fca0060c0b8 (patch)
treeab6441ca876e6f84ab5bcb157f0239c3b91f5714 /meta/classes/externalsrc.bbclass
parent72810f9a645ff319bac45a24a3da64abcd9c98c6 (diff)
downloadpoky-586291fe2bb1939bd77ab3c8666e5fca0060c0b8.tar.gz
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. (From OE-Core rev: 87bedd137a77c5ac0033a1de4587c40dbe93e81d) 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.bbclass2
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 () {
88 88
89python externalsrc_compile_prefunc() { 89python externalsrc_compile_prefunc() {
90 # Make it obvious that this is happening, since forgetting about it could lead to much confusion 90 # Make it obvious that this is happening, since forgetting about it could lead to much confusion
91 bb.warn('Compiling %s from external source %s' % (d.getVar('PN', True), d.getVar('EXTERNALSRC', True))) 91 bb.plain('NOTE: %s: compiling from external source tree %s' % (d.getVar('PN', True), d.getVar('EXTERNALSRC', True)))
92} 92}