diff options
author | Ian Lynagh <igloo@earth.li> | 2009-10-23 13:41:22 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-10-23 13:41:22 +0000 |
commit | d718bdb80858044b2a6c0f9177f2acd2afa16d24 (patch) | |
tree | 9ab724122e76a45cce6782c5d2c39cfb8d55463c /configure.ac | |
parent | ffef0be0c8b02d31eac998637f7a25ddfc2f4b67 (diff) | |
download | haskell-d718bdb80858044b2a6c0f9177f2acd2afa16d24.tar.gz |
Do "set -e" in configure.ac
So if something configure does fails, so does the whole configur script
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 08b81782d9..9cd89a6b63 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,8 @@ AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.13], [glasgow-hask # Set this to YES for a released version, otherwise NO : ${RELEASE=NO} +set -e + # The primary version (e.g. 6.7, 6.6.1) is set in the AC_INIT line # above. If this is not a released version, then we will append the # date to the version number (e.g. 6.7.20070204). The date is |