From bf33ba3a117856fb0369d25a9d660b71f823c0ae Mon Sep 17 00:00:00 2001
From: simonmar <unknown>
Date: Tue, 7 Dec 1999 15:49:54 +0000
Subject: [PATCH] [project @ 1999-12-07 15:49:52 by simonmar] Now that $(GHC)
 means an installed copy of ghc, use $(GHC_INPLACE) to refer to the ghc in the
 build tree.

---
 ghc/lib/std/Makefile       | 2 +-
 ghc/lib/std/cbits/Makefile | 4 ++--
 ghc/mk/paths.mk            | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile
index ac33ac7cee43..d109fbae39b8 100644
--- a/ghc/lib/std/Makefile
+++ b/ghc/lib/std/Makefile
@@ -18,7 +18,7 @@ else
 SUBDIRS=
 endif
 
-HC = $(GHC)
+HC = $(GHC_INPLACE)
 
 #-----------------------------------------------------------------------------
 # 	Setting the standard variables
diff --git a/ghc/lib/std/cbits/Makefile b/ghc/lib/std/cbits/Makefile
index 011c92972e78..9132b6e4e5be 100644
--- a/ghc/lib/std/cbits/Makefile
+++ b/ghc/lib/std/cbits/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.10 1999/12/04 15:17:42 panne Exp $
+# $Id: Makefile,v 1.11 1999/12/07 15:49:53 simonmar Exp $
 
 TOP = ../../..
 include $(TOP)/mk/boilerplate.mk
@@ -36,7 +36,7 @@ SRC_BLD_DLL_OPTS += -lwinmm -lwsock32 -lHSrts_imp -lgmp -L. -L../../../rts/gmp -
 #
 # Compile the files using the Haskell compiler (ghc really).
 # 
-CC=$(GHC)
+CC=$(GHC_INPLACE)
 
 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
 
diff --git a/ghc/mk/paths.mk b/ghc/mk/paths.mk
index ff7850d182ed..b276a87f0b9e 100644
--- a/ghc/mk/paths.mk
+++ b/ghc/mk/paths.mk
@@ -43,7 +43,7 @@ GHC_INCLUDE_DIR   	= $(TOP)/includes
 GHC_UTILS_DIR	 	= $(TOP)/utils
 GHC_INTERPRETER_DIR 	= $(TOP)/interpreter
 
-GHC 			= $(GHC_DRIVER_DIR)/ghc-inplace
+GHC_INPLACE		= $(GHC_DRIVER_DIR)/ghc-inplace
 GHC_HSCPP_DIR 		= $(GHC_UTILS_DIR)/hscpp
 GHC_HSCPP    		= $(GHC_HSCPP_DIR)/hscpp
 GHC_MKDEPENDHS_DIR	= $(GHC_UTILS_DIR)/mkdependHS
-- 
GitLab