From: Chris Larson Date: Mon, 24 May 2010 03:32:56 +0000 (-0700) Subject: autotools.bbclass: drop 'cfgcmd' and 'Running ..' output X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c508c916ac00266ae94fb32cac3b0fddb67093e;p=openembedded.git 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 --- 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