summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2015-05-21 15:08:10 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2015-05-21 15:08:10 +0000
commitcb44d0b7b780b540272c77c8d27f5f416dfa0867 (patch)
tree2de03ff10556dc92ed621cbe07aa1e5011159ae6 /autogen.sh
parent9aa43641750d9dca4c19d94ea8a79f9a61142587 (diff)
downloadmpfr-cb44d0b7b780b540272c77c8d27f5f416dfa0867.tar.gz
[autogen.sh] Exit with the exit status of autoreconf. Thus a failure
will be noticed more easily. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9445 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 90c840a10..5d2a116aa 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,8 +6,11 @@
mv -f INSTALL INSTALL.$$.tmp
autoreconf -v -f -i -W all
+status=$?
rm -f INSTALL
mv -f INSTALL.$$.tmp INSTALL
rm -rf autom4te.cache
+
+exit $status