diff options
author | sven.panne@aedion.de <unknown> | 2007-02-24 18:01:23 +0000 |
---|---|---|
committer | sven.panne@aedion.de <unknown> | 2007-02-24 18:01:23 +0000 |
commit | 25f44cb945936c2b9e42b8f28284d71a9b67652b (patch) | |
tree | 1487d5b144529ffa5de5b2ba02f835903beabd88 /configure.ac | |
parent | e13260bd595e518425a7f36ba34ca3297974cae8 (diff) | |
download | haskell-25f44cb945936c2b9e42b8f28284d71a9b67652b.tar.gz |
Don't hardwire RELEASE into configure.ac
Previously one had to edit configure.ac to build a release version. This is
evil, so one can now specify this on the configure invocation line like:
RELEASE=YES ./configure
Note that non-released versions are still the default.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a1a9861b82..8cf4d61819 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ dnl AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.7], [glasgow-haskell-bugs@haskell.org], [ghc]) # Set this to YES for a released version, otherwise NO -RELEASE=NO +: ${RELEASE=NO} # 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 |