From: Paul Eggleton Date: Wed, 19 Jul 2017 10:07:14 +0000 (+0200) Subject: classes/staging: change fixme debug message from note to debug X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0efe132c9641f854622e61607f71555adbad4d60;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git classes/staging: change fixme debug message from note to debug These messages were added for debugging during the recipe specific sysroot work. They may still be useful but they don't need to be notes - if they are they show up in recipetool / devtool output when fetching source. (From OE-Core rev: a0e93d5c5dcf59d1898a3db727a5ab2d75e3d20e) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 8f470d523bf..162c8e9ce4b 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass @@ -170,7 +170,7 @@ def staging_processfixme(fixme, target, recipesysroot, recipesysrootnative, d): for fixmevar in ['COMPONENTS_DIR', 'HOSTTOOLS_DIR', 'PKGDATA_DIR']: fixme_path = d.getVar(fixmevar) cmd += " -e 's:FIXME_%s:%s:g'" % (fixmevar, fixme_path) - bb.note(cmd) + bb.debug(2, cmd) subprocess.check_output(cmd, shell=True)