From: Ivan Maidanski Date: Wed, 28 Mar 2012 15:16:07 +0000 (+0400) Subject: Fix autogen.sh to prevent reporting success if autoreconf failed X-Git-Tag: gc7_3alpha2~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27c92365ec4db5624bd1b0a2d6ce02818d5b871f;p=gc Fix autogen.sh to prevent reporting success if autoreconf failed * autogen.sh: Add "set -e" command to abort script execution on autoreconf failure (thus not printing "ready" in that case). --- diff --git a/autogen.sh b/autogen.sh index 2a4593e8..98b91da9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,5 @@ #!/bin/sh +set -e # This script creates (or regenerates) configure (as well as aclocal.m4, # config.h.in, Makefile.in, etc.) missing in the source repository.