diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-11-04 15:03:33 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-11-10 13:16:03 -0500 |
commit | 500d90d2ec841453a2b4162307ea706aa2cb5b1e (patch) | |
tree | 423d759d3a85a45b684103d6725e6e642256fd62 /utils/ghc-cabal | |
parent | 317236db308d9bd497a11fa4c455428fc7477405 (diff) | |
download | haskell-500d90d2ec841453a2b4162307ea706aa2cb5b1e.tar.gz |
ghc-cabal: Use correct name of linker flags env variable
Currently passing the `CONF_LD_LINKER_OPTS_STAGE0` environment
variable to `configure` is broken due to this naming inconsistency.
Test Plan: Try passing `CONF_LD_LINKER_OPTS_STAGE0` to `configure`.
Look at resulting stage0 ghc invocation.
Reviewers: austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2672
Diffstat (limited to 'utils/ghc-cabal')
-rw-r--r-- | utils/ghc-cabal/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ghc-cabal/ghc.mk b/utils/ghc-cabal/ghc.mk index 38f7951633..78a67059dd 100644 --- a/utils/ghc-cabal/ghc.mk +++ b/utils/ghc-cabal/ghc.mk @@ -47,7 +47,7 @@ $(ghc-cabal_DIST_BINARY): $(wildcard libraries/Cabal/Cabal/Distribution/*.hs) $(ghc-cabal_DIST_BINARY): utils/ghc-cabal/Main.hs $(TOUCH_DEP) | $$(dir $$@)/. bootstrapping/. "$(GHC)" $(SRC_HC_OPTS) \ $(addprefix -optc, $(SRC_CC_OPTS) $(CONF_CC_OPTS_STAGE0)) \ - $(addprefix -optl, $(SRC_LD_OPTS) $(CONF_LD_OPTS_STAGE0)) \ + $(addprefix -optl, $(SRC_LD_OPTS) $(CONF_GCC_LINKER_OPTS_STAGE0)) \ -hide-all-packages \ $(addprefix -package , $(CABAL_BUILD_DEPS)) \ --make utils/ghc-cabal/Main.hs -o $@ \ |