From 75fbe10f71220528b9dc14a31a2919d1c4c1f501 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 27 Jan 2019 17:08:36 +0100 Subject: [PATCH] qa.sh: Dump config.log for configure failures --- expat/qa.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/expat/qa.sh b/expat/qa.sh index 95daf222..6a26976f 100755 --- a/expat/qa.sh +++ b/expat/qa.sh @@ -89,7 +89,8 @@ main() { CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \ AR="${AR}" \ LD="${LD}" LDFLAGS="${LDFLAGS}" \ - ./configure "$@" + ./configure "$@" \ + || { RUN cat config.log ; false ; } RUN "${MAKE}" \ CFLAGS="${CFLAGS} -Werror" \