This is needed to better support things like the following (with a
multi-word BUILD_CC):

    EXTRA_OECONF += '"ac_cv_prog_CC_FOR_BUILD=${BUILD_CC}"'

Signed-off-by: Christopher Larson <[email protected]>
---
 meta/classes/autotools.bbclass |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index a4ce851..937e2ba 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -71,10 +71,8 @@ CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking"
 
 oe_runconf () {
        if [ -x ${S}/configure ] ; then
-               cfgcmd="${S}/configure \
-               ${CONFIGUREOPTS} ${EXTRA_OECONF} $@"
-               bbnote "Running $cfgcmd..."
-               $cfgcmd || bbfatal "oe_runconf failed" 
+               bbnote "Running ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} 
$@"
+               ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@" || bbfatal 
"oe_runconf failed"
        else
                bbfatal "no configure script found"
        fi
-- 
1.7.3.2.430.g208247


_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Reply via email to