diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-26 13:16:09 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-26 13:16:09 +0000 |
commit | aee2527dd489b12770a0374c81f6318a5160f353 (patch) | |
tree | ebfe9ab27b070a77deb3ee658f58c6ff58f8672d /ghc/Makefile | |
parent | 85d3c9b8acd75c9bba47246580dedee6e90e3527 (diff) | |
download | haskell-aee2527dd489b12770a0374c81f6318a5160f353.tar.gz |
Pass SRC_HC_OPTS to GHC when building GHC's Main.hs
Diffstat (limited to 'ghc/Makefile')
-rw-r--r-- | ghc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ghc/Makefile b/ghc/Makefile index f1666d1ac9..29ca7a821b 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -88,9 +88,10 @@ CONFIGURE_FLAGS_STAGE1 += $(foreach flag, $(GhcStage1HcOpts), --ghc-option=$(fla CONFIGURE_FLAGS_STAGE2 += $(foreach flag, $(GhcStage2HcOpts), --ghc-option=$(flag)) CONFIGURE_FLAGS_STAGE3 += $(foreach flag, $(GhcStage3HcOpts), --ghc-option=$(flag)) +BUILD_FLAGS += $(patsubst %, --ghc-option=%, $(SRC_HC_OPTS)) # Allow EXTRA_HC_OPTS to be used from the command line to add options # when building (e.g. -v) -BUILD_FLAGS=$(patsubst %, --ghc-option=%, $(EXTRA_HC_OPTS)) +BUILD_FLAGS += $(patsubst %, --ghc-option=%, $(EXTRA_HC_OPTS)) # XXX In stage2+ we should really use the inplace ghc-pkg # It works because installPackage doesn't actually use ghc-pkg, as there's |