From: simonmar Date: Tue, 27 Mar 2001 10:32:42 +0000 (+0000) Subject: [project @ 2001-03-27 10:32:42 by simonmar] X-Git-Tag: Approximately_9120_patches~2294 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=dde4c1f2a13c6d5b3c132cfd7de82e5811e18f55;p=ghc-hetmet.git [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. --- 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.