]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
autogen.sh: fail cleanly if autoconf fails
authorSimon McVittie <simon.mcvittie@collabora.co.uk>
Mon, 15 Aug 2016 19:11:49 +0000 (20:11 +0100)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Mon, 15 Aug 2016 19:11:49 +0000 (20:11 +0100)
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
autogen.sh

index 91d4b09d8e0368be877a7447c2391ecee29ac697..6de735f0e3689812f6dc352cf97049a703d75ee9 100755 (executable)
@@ -81,7 +81,10 @@ $ACLOCAL -I m4 $ACLOCAL_FLAGS
 (autoheader --version)  < /dev/null > /dev/null 2>&1 && autoheader
 
 $AUTOMAKE -a $am_opt
-autoconf || echo "autoconf failed - version 2.5x is probably required"
+if ! autoconf; then
+  echo "autoconf failed - version 2.5x is probably required" >&2
+  exit 1
+fi
 
 cd $ORIGDIR