From 04eaa2d72ce1474f4b36621363108ed915ace9ef Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 18 Sep 2009 10:43:27 +0000 Subject: [PATCH] Fix #3525 - we were still checking for ParsePkgConf.hs, which is gone --- aclocal.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aclocal.m4 b/aclocal.m4 index bf88bd7..097ff9c 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -244,7 +244,7 @@ else fi; changequote([, ])dnl ]) -if test ! -f compiler/parser/Parser.hs || test ! -f compiler/main/ParsePkgConf.hs || test ! -f compiler/cmm/CmmParse.hs || test ! -f compiler/parser/ParserCore.hs +if test ! -f compiler/parser/Parser.hs || test ! -f compiler/cmm/CmmParse.hs || test ! -f compiler/parser/ParserCore.hs then FP_COMPARE_VERSIONS([$fptools_cv_happy_version],[-lt],[1.16], [AC_MSG_ERROR([Happy version 1.16 or later is required to compile GHC.])])[] -- 1.7.10.4