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

github.com/Unity-Technologies/libatomic_ops.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:14:25 +0400
committerIvan Maidanski <ivmai@mail.ru>2012-03-28 19:14:25 +0400
commit531888d92a95916e18334359937dc6b818c48ea2 (patch)
tree46d59aade7533b6ddb7492dee04b938736e4149e /autogen.sh
parent1c24f099445e52ec864f6d3711f150506972434c (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 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.