From: Ian Lynagh Date: Fri, 23 Oct 2009 13:41:22 +0000 (+0000) Subject: Do "set -e" in configure.ac X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=d718bdb80858044b2a6c0f9177f2acd2afa16d24 Do "set -e" in configure.ac So if something configure does fails, so does the whole configur script --- diff --git a/configure.ac b/configure.ac index 08b8178..9cd89a6 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