From: Tobias Henkel Date: Tue, 12 Nov 2013 08:33:57 +0000 (+0100) Subject: icecc: Reduce verbosity with empty PARALLEL_MAKE X-Git-Tag: 2015-4~4640 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6d2735629c20560a9406964195726b1a6e2d7d99;p=openembedded-core.git 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. Signed-off-by: Tobias Henkel Signed-off-by: Richard Purdie --- 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): return "no" if d.getVar('PARALLEL_MAKE') == "": - bb.note(package_tmp, " ", d.expand('${PV}'), " has empty PARALLEL_MAKE, disable icecc") + bb.debug(1, package_tmp, " ", d.expand('${PV}'), " has empty PARALLEL_MAKE, disable icecc") return "no" return "yes"