From f9f7cbe93e6a45c4ca3f3e34e2d9369da6b5d988 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 31 Mar 2014 18:02:09 +0200 Subject: [PATCH] autogen.sh: don't run ./configure if autoreconf failed The following line could be seen in the middle of the log: autoreconf: automake failed with exit status: 1 Clearly the configuration phase should not continue from there. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 6546c6eb29..c0124140d6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,5 +4,5 @@ if [ $? -ne 0 ] ; then echo "Please install autoconf" && exit 1; fi mkdir -p m4 -autoreconf -i --force --warnings=none -I . -I m4 +autoreconf -i --force --warnings=none -I . -I m4 && \ ./configure --enable-maintainer-mode $*