diff options
author | Ian Lynagh <igloo@earth.li> | 2010-04-12 23:56:58 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-04-12 23:56:58 +0000 |
commit | 4b8a6d6c34bd74a4e3ac4d5d3c19e1236b1882dd (patch) | |
tree | 5feef569ad45063d2ba1ef97a30b2f8dd7a8abda /configure.ac | |
parent | 5f220e2c4240826a6a4ccfd8ffe038ed1b0708b8 (diff) | |
download | haskell-4b8a6d6c34bd74a4e3ac4d5d3c19e1236b1882dd.tar.gz |
Remove the ghc_ge_609 makefile variables
They are now guaranteed to be YES
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a4eb02289e..9ab6b3435b 100644 --- a/configure.ac +++ b/configure.ac @@ -125,12 +125,10 @@ if test "$WithGhc" != ""; then AC_SUBST(GhcPatchLevel)dnl GhcMinVersion2=`echo "$GhcMinVersion" | sed 's/^\\(.\\)$/0\\1/'` GhcCanonVersion="$GhcMajVersion$GhcMinVersion2" - if test $GhcCanonVersion -ge 609; then ghc_ge_609=YES; else ghc_ge_609=NO; fi FP_COMPARE_VERSIONS($GhcVersion,[-ge],[6.10.2], [ghc_ge_6102=YES], [ghc_ge_6102=NO]) if test $GhcCanonVersion -ge 611; then ghc_ge_611=YES; else ghc_ge_611=NO; fi if test $GhcCanonVersion -ge 613; then ghc_ge_613=YES; else ghc_ge_613=NO; fi - AC_SUBST(ghc_ge_609)dnl AC_SUBST(ghc_ge_6102)dnl AC_SUBST(ghc_ge_611)dnl AC_SUBST(ghc_ge_613)dnl |