diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-22 22:27:50 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-22 22:27:50 +0100 |
commit | 35ccb1819d3a3fa100ed4e77798da7a58654a08d (patch) | |
tree | cec4c97f59f160f791acba964020c0e114557a9d /configure.ac | |
parent | f1f3c4f50650110ad0f700d6566a44c515b0548f (diff) | |
download | haskell-35ccb1819d3a3fa100ed4e77798da7a58654a08d.tar.gz |
Remove redundant tests for whether we're in a GHC tree
We always are, nowadays.
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 d25cb6a6e1..2eb7f29d37 100644 --- a/configure.ac +++ b/configure.ac @@ -135,7 +135,7 @@ if test "$WithGhc" != ""; then fi dnl ** Must have GHC to build GHC, unless --enable-hc-boot is on -if test "$BootingFromHc" = "NO" -a -d "$srcdir/compiler"; then +if test "$BootingFromHc" = "NO"; then if test "$WithGhc" = ""; then AC_MSG_ERROR([GHC is required unless bootstrapping from .hc files.]) fi |