diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 609b39d4..ef235a24 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,10 +3,14 @@ include $(TOP)/mk/boilerplate.mk INSTALLING=1 +# NOTE: This is only a temporary workaround for a bug in GHC's simplifier! +GHC_HAPPY_OPTS = -ag + SRC_HC_OPTS += -package data -package text -package util -fglasgow-exts -cpp HS_PROG = haddock.bin -HsParser_HC_OPTS += -Onot +HsParser_HC_OPTS += -Onot +HaddockParse_HC_OPTS += -Onot HaddockVersion_HC_OPTS = -DHADDOCK_VERSION=$(ProjectVersion) ifeq "$(INSTALLING)" "1" |