summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-05-23 20:32:56 -0700
committerChris Larson <chris_larson@mentor.com>2010-05-23 20:49:08 -0700
commit4c508c916ac00266ae94fb32cac3b0fddb67093e (patch)
tree74e98d0bf936bee04add434b658136eb1180b086 /classes
parent1a2a620b19398a80b6f3286c7dc8dd3161f8f01f (diff)
downloadopenembedded-4c508c916ac00266ae94fb32cac3b0fddb67093e.tar.gz
autotools.bbclass: drop 'cfgcmd' and 'Running ..' output
Per discussion with Enrico Scholz, there are better ways to debug problems than this, so drop it, making it more consistent with oe_runmake and ensuring we don't see problems with spaces in arguments. Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/autotools.bbclass7
1 files changed, 1 insertions, 6 deletions
diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass
index 9bb4f6c43e..df2c11426e 100644
--- a/classes/autotools.bbclass
+++ b/classes/autotools.bbclass
@@ -64,12 +64,7 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
oe_runconf () {
if [ -x ${S}/configure ] ; then
- cfgcmd="${S}/configure \
- ${CONFIGUREOPTS} \
- ${EXTRA_OECONF} \
- $@"
- oenote "Running $cfgcmd..."
- $cfgcmd || oefatal "oe_runconf failed"
+ ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@"
else
oefatal "no configure script found"
fi