]> code.ossystems Code Review - openembedded-core.git/commitdiff
autotools: don't output the full config.log on configure failure
authorRoss Burton <ross.burton@intel.com>
Tue, 12 Jan 2016 20:45:45 +0000 (20:45 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 22 Jan 2016 17:21:05 +0000 (17:21 +0000)
The config.log written by autoconf includes many pages of useless output,
followed by an obfuscated error message, and then more pages of every variable
that's been set.  It's only understandable if you're well versed in how autoconf
behaves, and often in simple failure modes doesn't actually make it clear what
the problem was.

Instead of outputting the whole config.log to the console when do_configure()
fails, use bbfatal_log so the human-readable configure output (not the
config.log) is shown to the user, and tell the user where config.log can be
found if they need it.

[ YOCTO #8856 ]

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/autotools.bbclass

index 44cb422584367b297e98b0a4b59460cda1946038..1400b44999a8d1a83d79d7e619ddd2a188cd0943 100644 (file)
@@ -88,14 +88,11 @@ oe_runconf () {
        cfgscript=`python -c "import os; print os.path.relpath(os.path.dirname('${CONFIGURE_SCRIPT}'), '.')"`/$cfgscript_name
        if [ -x "$cfgscript" ] ; then
                bbnote "Running $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} $@"
-               set +e
-               ${CACHED_CONFIGUREVARS} $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@"
-               if [ "$?" != "0" ]; then
-                       echo "Configure failed. The contents of all config.log files follows to aid debugging"
-                       find ${B} -ignore_readdir_race -name config.log -print -exec cat {} \;
-                       die "oe_runconf failed"
+               if ! ${CACHED_CONFIGUREVARS} $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@"; then
+                       bbnote "The following config.log files may provide further information."
+                       bbnote `find ${B} -ignore_readdir_race -type f -name config.log`
+                       bbfatal_log "configure failed"
                fi
-               set -e
        else
                bbfatal "no configure script found at $cfgscript"
        fi