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 /rules | |
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 'rules')
-rw-r--r-- | rules/build-package-data.mk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/rules/build-package-data.mk b/rules/build-package-data.mk index e46ecd6d61..89b742c613 100644 --- a/rules/build-package-data.mk +++ b/rules/build-package-data.mk @@ -105,12 +105,7 @@ $1_$2_CONFIGURE_OPTS += $$(BOOT_PKG_CONSTRAINTS) endif $1_$2_CONFIGURE_OPTS += --with-gcc="$$(CC_STAGE$3)" - -ifneq "$3" "0" -# There is no LD_STAGE0, Cabal will figure it out $1_$2_CONFIGURE_OPTS += --with-ld="$$(LD_STAGE$3)" -endif - $1_$2_CONFIGURE_OPTS += --with-ar="$$(AR_STAGE$3)" $1_$2_CONFIGURE_OPTS += $$(if $$(ALEX),--with-alex="$$(ALEX)") $1_$2_CONFIGURE_OPTS += $$(if $$(HAPPY),--with-happy="$$(HAPPY)") |