diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2016-03-27 20:03:33 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2016-03-27 20:03:33 +0200 |
commit | 06cd26b92a4dfe1f5036440085c602da798d5146 (patch) | |
tree | 69502123223c0a85e2942466d01670e1751be043 /mk/config.mk.in | |
parent | 9f73e46c0f34b8b5e8318e6b488b7dade7db68e3 (diff) | |
download | haskell-06cd26b92a4dfe1f5036440085c602da798d5146.tar.gz |
Remove now obsolete LD_STAGE0 hack
This was introduced in 109a1e53287f50103e8a5b592275940b6e3dbb53
but isn't needed anymore because by now we're bootstrapping with
GHC versions which already provide "ld command" in `ghc --info`
(that field was added in GHC 7.8)
Diffstat (limited to 'mk/config.mk.in')
-rw-r--r-- | mk/config.mk.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index d2bf321f90..5d5e581a43 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -539,9 +539,7 @@ AS_STAGE1 = $(AS) AS_STAGE2 = $(AS) AS_STAGE3 = $(AS) -# We don't have an LD_STAGE0. CC_STAGE0 is determined by asking "ghc -# --info", and it doesn't report an LD. -LD_STAGE0 = error-no-ld-stage0 +LD_STAGE0 = @LD_STAGE0@ LD_STAGE1 = $(LD) LD_STAGE2 = $(LD) LD_STAGE3 = $(LD) |