From cadd7feeb2fc23796601db1744812e38432661df Mon Sep 17 00:00:00 2001 From: Martin Schanzenbach Date: Sun, 16 Aug 2020 22:05:15 +0200 Subject: -proper return code when bootstrap fails --- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index b4f5b4dc3..df0e58dda 100755 --- a/bootstrap +++ b/bootstrap @@ -79,8 +79,8 @@ check_libtool() existence libtoolize || \ existence glibtoolize || \ existence slibtool; then - autoreconf -if - . "bin/pogen.sh" + autoreconf -if || exit 1 + . "bin/pogen.sh" || exit 1 else echo "*** No libtoolize (libtool) or libtool found, please install it ***" >&2; exit 1 -- cgit v1.2.3