summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass6
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index c05ab4b0a0..5b5b8b65de 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -68,10 +68,8 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
68 68
69oe_runconf () { 69oe_runconf () {
70 if [ -x ${S}/configure ] ; then 70 if [ -x ${S}/configure ] ; then
71 cfgcmd="${S}/configure \ 71 bbnote "Running ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} $@"
72 ${CONFIGUREOPTS} ${EXTRA_OECONF} $@" 72 ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@" || bbfatal "oe_runconf failed"
73 bbnote "Running $cfgcmd..."
74 $cfgcmd || bbfatal "oe_runconf failed"
75 else 73 else
76 bbfatal "no configure script found" 74 bbfatal "no configure script found"
77 fi 75 fi