Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2012-03-28 19:16:07 +0400
committerIvan Maidanski <ivmai@mail.ru>2012-03-28 19:16:07 +0400
commit27c92365ec4db5624bd1b0a2d6ce02818d5b871f (patch)
tree6993a3891c663325668c60e2c19f3e9484bd6ed8 /autogen.sh
parent54ad002c0ad9cb9d78de723e5ce570a925002ef1 (diff)
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).
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh1
1 files changed, 1 insertions, 0 deletions
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.