From a864e2cc192a04e59ab1ad3cdec3dc9313adfa2e Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 24 Sep 2012 08:30:07 -0400 Subject: [PATCH] autogen.sh: Use set -e Otherwise we blindly continue if autoreconf fails, which is pretty damn lame. --- autogen.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autogen.sh b/autogen.sh index 00281da0..75a16b68 100755 --- a/autogen.sh +++ b/autogen.sh @@ -12,6 +12,8 @@ if test -z $AUTORECONF; then exit 1 fi +set -e + mkdir -p m4 # Fetch submodules if needed