diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2016-08-15 20:11:49 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2016-08-15 20:11:49 +0100 |
commit | 0bbfca6def7a39c03b7a0a4cba166fdf89f3c630 (patch) | |
tree | bce2b503e9938525f1ee4d8d7a1efcb976af233a /autogen.sh | |
parent | 73b03e0bfbf4e8925eabe246ed4f9e64dcce92ca (diff) |
autogen.sh: fail cleanly if autoconf fails
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |