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 /aclocal.m4 | |
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 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 5464930a47..51aef938e9 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -702,7 +702,7 @@ if test -z "$GCC"; then else fp_have_gcc=YES fi -if test "$fp_have_gcc" = "NO" -a -d $srcdir/ghc; then +if test "$fp_have_gcc" = "NO"; then AC_MSG_ERROR([gcc is required]) fi GccLT34= |