diff options
author | Ian Lynagh <igloo@earth.li> | 2009-10-29 01:00:31 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-10-29 01:00:31 +0000 |
commit | f23d3f44a9d68c62ed256d05685d5eca89606d7b (patch) | |
tree | 77feff5fb6559c8732242fc2f1149ddc41c6f789 | |
parent | 3f888bd95df5154a535673a33fee13cf88c3838e (diff) | |
download | haskell-f23d3f44a9d68c62ed256d05685d5eca89606d7b.tar.gz |
Don't "set -e" in configure.ac
On some systems (bash 4?) configure fails because of it when
"gcc -V" fails.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 8d41ac79a2..b1c634c35c 100644 --- a/configure.ac +++ b/configure.ac @@ -18,8 +18,6 @@ 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 |