autotools.bbclass: drop 'cfgcmd' and 'Running ..' output
authorChris Larson <chris_larson@mentor.com>
Mon, 24 May 2010 03:32:56 +0000 (20:32 -0700)
committerChris Larson <chris_larson@mentor.com>
Mon, 24 May 2010 03:49:08 +0000 (20:49 -0700)
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>
classes/autotools.bbclass

index 9bb4f6c..df2c114 100644 (file)
@@ -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