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 041332208e..451c7fcc1e 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -71,10 +71,8 @@ CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking"
71 71
72oe_runconf () { 72oe_runconf () {
73 if [ -x ${S}/configure ] ; then 73 if [ -x ${S}/configure ] ; then
74 cfgcmd="${S}/configure \ 74 bbnote "Running ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} $@"
75 ${CONFIGUREOPTS} ${EXTRA_OECONF} $@" 75 ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@" || bbfatal "oe_runconf failed"
76 bbnote "Running $cfgcmd..."
77 $cfgcmd || bbfatal "oe_runconf failed"
78 else 76 else
79 bbfatal "no configure script found" 77 bbfatal "no configure script found"
80 fi 78 fi