diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-08 16:56:54 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-08 16:56:54 +0000 |
commit | 53ec704b7155b18a49f09e6894fd033db3b8f592 (patch) | |
tree | 122058cc9cf1004c53bf89933d05a9cecdccfebe /mk | |
parent | 7e1ca77bc1f27ba2b2a6703c7b6b4f854336c479 (diff) | |
download | haskell-53ec704b7155b18a49f09e6894fd033db3b8f592.tar.gz |
Extend the flag for not automatically linking haskell98
It now also doesn't automatically link base and rts either.
We need this when we've done a build, so base and rts are in the
package.conf, but we've then cleaned the libraries so they don't
physically exist any more.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 8afeb1ef8a..be65b243e4 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -967,7 +967,7 @@ SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS))) SRC_HSC2HS_OPTS += --cc=$(CC) SRC_HSC2HS_OPTS += --ld=$(CC) SRC_HSC2HS_OPTS += --cflag=-D__GLASGOW_HASKELL__=$(ProjectVersionInt) -SRC_HSC2HS_OPTS += --lflag=-no-link-haskell98 +SRC_HSC2HS_OPTS += --lflag=-no-auto-link-packages SRC_HSC2HS_OPTS += -I$(GHC_INCLUDE_DIR_ABS) SRC_HSC2HS_OPTS += -I$(FPTOOLS_TOP_ABS)/gmp/gmpbuild |