diff options
author | Ian Lynagh <igloo@earth.li> | 2008-06-23 14:44:26 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-06-23 14:44:26 +0000 |
commit | 9a657491d1caf6e29c85ce71e95a36eea3e036b1 (patch) | |
tree | 52efd41f503e023f2bb7a25fdcad33366d3e0941 /utils/runghc/Makefile | |
parent | f2e53b6f1045941243d2d5e76e9b01b6e769ddd9 (diff) | |
download | haskell-9a657491d1caf6e29c85ce71e95a36eea3e036b1.tar.gz |
Fix the build with GHC 6.4
Diffstat (limited to 'utils/runghc/Makefile')
-rw-r--r-- | utils/runghc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/runghc/Makefile b/utils/runghc/Makefile index 557940b611..54245a3397 100644 --- a/utils/runghc/Makefile +++ b/utils/runghc/Makefile @@ -10,6 +10,10 @@ SRC_HC_OPTS += $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS)) SRC_LD_OPTS += $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS)) endif +ifeq "$(ghc_ge_605)" "NO" +SRC_HC_OPTS += -cpp +endif + # We have two version: the inplace version compiled by the bootstrap compiler # and the install version compiled by the stage 1 compiler ifeq "$(stage)" "2" |