diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-23 20:32:56 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-23 20:49:08 -0700 |
commit | 4c508c916ac00266ae94fb32cac3b0fddb67093e (patch) | |
tree | 74e98d0bf936bee04add434b658136eb1180b086 | |
parent | 1a2a620b19398a80b6f3286c7dc8dd3161f8f01f (diff) |
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>
-rw-r--r-- | classes/autotools.bbclass | 7 |
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 |