From fac1c30a4b748cd612f88a2360271d0e01bb5f3a Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 8 Dec 2000 09:39:05 +0000 Subject: [PATCH] [project @ 2000-12-08 09:39:05 by simonmar] use $(GHC) for $(MKDEPENDHS), since $(GHC_INPLACE) isn't built yet. There's a minor problem with this, in that if you've added any options to GhcLibHcOpts that are specific to the new compiler, 'make boot' won't work. bleugh. --- ghc/lib/std/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 22b2331..ff1b72c 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -23,7 +23,7 @@ endif # HC = $(GHC_INPLACE) -MKDEPENDHS = $(GHC_INPLACE) +MKDEPENDHS = $(GHC) ifneq "$(DLLized)" "YES" PACKAGE = -package-name std -- 1.7.10.4