[PATCH] compiler/ghc.mk: restore GhcHcOpts variable handling
From: Sergei Trofimovich <slyfox@gentoo.org> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> --- compiler/ghc.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/ghc.mk b/compiler/ghc.mk index 4977e28..d902b7f 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -667,9 +667,9 @@ compiler_stage2_CONFIGURE_OPTS += --disable-library-for-ghci compiler_stage3_CONFIGURE_OPTS += --disable-library-for-ghci # after build-package, because that sets compiler_stage1_HC_OPTS: -compiler_stage1_HC_OPTS += $(GhcStage1HcOpts) -compiler_stage2_HC_OPTS += $(GhcStage2HcOpts) -compiler_stage3_HC_OPTS += $(GhcStage3HcOpts) +compiler_stage1_HC_OPTS += $(GhcHcOpts) $(GhcStage1HcOpts) +compiler_stage2_HC_OPTS += $(GhcHcOpts) $(GhcStage2HcOpts) +compiler_stage3_HC_OPTS += $(GhcHcOpts) $(GhcStage3HcOpts) ifneq "$(BINDIST)" "YES" -- 1.8.5.2
On Sat, 15 Feb 2014 16:26:07 +0300 slyich@gmail.com wrote:
From: Sergei Trofimovich <slyfox@gentoo.org>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> --- compiler/ghc.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
On trac as well: https://ghc.haskell.org/trac/ghc/ticket/8787 -- Sergei
participants (2)
-
Sergei Trofimovich -
slyich@gmail.com