From 8d53c9ac7ea19388bc2b400b99d33a231d944765 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 24 Jul 2008 08:17:28 +0000 Subject: [PATCH] allow EXTRA_HC_OPTS to be used from the command-line --- ghc/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc/Makefile b/ghc/Makefile index 88b4dc0..8c4e2c9 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -67,6 +67,10 @@ CONFIGURE_FLAGS_STAGE1 += $(USE_BOOT_CONFIGURE_FLAGS) CONFIGURE_FLAGS_STAGE2 += $(USE_STAGE1_CONFIGURE_FLAGS) CONFIGURE_FLAGS_STAGE3 += $(USE_STAGE2_CONFIGURE_FLAGS) +# 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)) + # XXX In stage2+ we should really use the inplace ghc-pkg # It works because installPackage doesn't actually use ghc-pkg, as there's # no library to register -- 1.7.10.4