From dde4c1f2a13c6d5b3c132cfd7de82e5811e18f55 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 27 Mar 2001 10:32:42 +0000 Subject: [PATCH] [project @ 2001-03-27 10:32:42 by simonmar] Config.hs no longer contains any absolute directories. The only absolute directory it knows about is always passed in from the mini-driver in the -B flag. This setup is pretty fragile for booting from .hc anyway because Config.hs contains platform-specific info, but it'll work enough to get the compiler booted. --- ghc/compiler/Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 64300a6..d328b7e 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.148 2001/03/27 09:38:02 simonmar Exp $ +# $Id: Makefile,v 1.149 2001/03/27 10:32:42 simonmar Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -63,12 +63,7 @@ $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile @echo "cHaveLibGmp = \"$(HaveLibGmp)\"" >> $(CONFIG_HS) @echo "cUSER_WAY_NAMES = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS) @echo "cUSER_WAY_OPTS = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS) - @echo "clibdir = \"$(libdir)\"" >> $(CONFIG_HS) - @echo "clibexecdir = \"$(libexecdir)\"" >> $(CONFIG_HS) - @echo "cdatadir = \"$(datadir)\"" >> $(CONFIG_HS) - @echo "cbindir = \"$(bindir)\"" >> $(CONFIG_HS) @echo "cDEFAULT_TMPDIR = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS) - @echo "cFPTOOLS_TOP_ABS = \"$(FPTOOLS_TOP_ABS)\"" >> $(CONFIG_HS) @echo "cRAWCPP = \"$(RAWCPP)\"" >> $(CONFIG_HS) @echo done. -- 1.7.10.4