[oe-commits] Chris Larson : autotools.bbclass: drop 'cfgcmd' and 'Running ..' output

git version control git at git.openembedded.org
Mon May 24 03:50:41 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 4c508c916ac00266ae94fb32cac3b0fddb67093e
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=4c508c916ac00266ae94fb32cac3b0fddb67093e

Author: Chris Larson <chris_larson at mentor.com>
Date:   Sun May 23 20:32:56 2010 -0700

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 at mentor.com>

---

 classes/autotools.bbclass |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass
index 9bb4f6c..df2c114 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





More information about the Openembedded-commits mailing list