From c1ce11e447c26165a97a4c614866d5bb36543cc2 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 7 May 2010 08:45:07 +0000 Subject: [PATCH] fix -fforce-recomp setting: module is PrimOp, not PrimOps --- compiler/ghc.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ghc.mk b/compiler/ghc.mk index 9cbacf4..e3746a4 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -486,7 +486,7 @@ $(eval $(call compiler-hs-dependency,PrimOp,$(PRIMOP_BITS))) # GHC itself doesn't know about the above dependencies, so we have to # switch off the recompilation checker for those modules: -compiler/prelude/PrimOps_HC_OPTS += -fforce-recomp +compiler/prelude/PrimOp_HC_OPTS += -fforce-recomp compiler/main/Constants_HC_OPTS += -fforce-recomp # Workaround for #4003 in GHC 6.12.2. It didn't happen in 6.12.1, and -- 1.7.10.4