summaryrefslogtreecommitdiffstats
path: root/meta/classes/icecc.bbclass
diff options
context:
space:
mode:
authorTobias Henkel <tobias.henkel@bmw-carit.de>2013-11-12 09:33:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-12 16:00:29 +0000
commit280a4922e7520b42d5f32db16d5ccb755e8c2796 (patch)
tree8ceb2e6ab5dd96cd2c150145b6d735deb282c29e /meta/classes/icecc.bbclass
parent79272eb0586bbfc835dbbe4a51a113f65670528a (diff)
downloadpoky-280a4922e7520b42d5f32db16d5ccb755e8c2796.tar.gz
icecc: Reduce verbosity with empty PARALLEL_MAKE
Currently the icecc class prints a note for every package which disables parallel make at parse time. This is unneccessary as many packages don't support parallel building. Changing the log level from info to debug hides these messages in normal builds without removing the information when needed. (From OE-Core rev: 6d2735629c20560a9406964195726b1a6e2d7d99) Signed-off-by: Tobias Henkel <tobias.henkel@bmw-carit.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/icecc.bbclass')
-rw-r--r--meta/classes/icecc.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 71c556fc78..ebd586d509 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -106,7 +106,7 @@ def use_icc(bb,d):
106 return "no" 106 return "no"
107 107
108 if d.getVar('PARALLEL_MAKE') == "": 108 if d.getVar('PARALLEL_MAKE') == "":
109 bb.note(package_tmp, " ", d.expand('${PV}'), " has empty PARALLEL_MAKE, disable icecc") 109 bb.debug(1, package_tmp, " ", d.expand('${PV}'), " has empty PARALLEL_MAKE, disable icecc")
110 return "no" 110 return "no"
111 111
112 return "yes" 112 return "yes"