From 531888d92a95916e18334359937dc6b818c48ea2 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Wed, 28 Mar 2012 19:14:25 +0400 Subject: [PATCH] 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). --- autogen.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/autogen.sh b/autogen.sh index 2a4593e..98b91da 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. -- 2.7.4