diff options
author | simonmar <unknown> | 2005-05-10 10:29:49 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-05-10 10:29:49 +0000 |
commit | c0dabc3ec372bc8f66d761a28cf411ada297ea76 (patch) | |
tree | 1dbb3a3767bf3f5a56997fdf6f82ff0c4a25c5aa | |
parent | 114c32eb4bddd43d0acf7853e5795afb6348d217 (diff) | |
download | haskell-c0dabc3ec372bc8f66d761a28cf411ada297ea76.tar.gz |
[project @ 2005-05-10 10:29:49 by simonmar]
Bootstrap fix from GNU/Hurd port
From: Thomas Schwinge
-rw-r--r-- | mk/bootstrap.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/bootstrap.mk b/mk/bootstrap.mk index af84565457..5bbc41f567 100644 --- a/mk/bootstrap.mk +++ b/mk/bootstrap.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: bootstrap.mk,v 1.33 2005/01/27 13:00:14 simonmar Exp $ +# $Id: bootstrap.mk,v 1.34 2005/05/10 10:29:49 simonmar Exp $ # # Makefile rules for booting from .hc files without a driver. # @@ -97,14 +97,14 @@ HC_BOOT_LD_OPTS = \ $(DASH_L_GHC_RTS_GMP_DIR) \ -L$(FPTOOLS_TOP_ABS)/libraries/base \ -L$(FPTOOLS_TOP_ABS)/libraries/base/cbits \ - -L$(FPTOOLS_TOP_ABS)/libraries/haskell98 + -L$(FPTOOLS_TOP_ABS)/libraries/haskell98 \ + -L$(FPTOOLS_TOP_ABS)/libraries/parsec \ + -L$(FPTOOLS_TOP_ABS)/libraries/Cabal ifeq "$(GhcWithInterpreter)" "YES" HC_BOOT_LD_OPTS += \ -L$(FPTOOLS_TOP_ABS)/libraries/template-haskell \ -L$(FPTOOLS_TOP_ABS)/libraries/readline \ - -L$(FPTOOLS_TOP_ABS)/libraries/parsec \ - -L$(FPTOOLS_TOP_ABS)/libraries/Cabal \ -L$(FPTOOLS_TOP_ABS)/libraries/unix \ -L$(FPTOOLS_TOP_ABS)/libraries/unix/cbits endif |