From 4c508c916ac00266ae94fb32cac3b0fddb67093e Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Sun, 23 May 2010 20:32:56 -0700 Subject: [PATCH] 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 --- classes/autotools.bbclass | 7 +------ 1 file changed, 1 insertion(+), 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 -- 2.39.5