From 1e046f78fc981ab536a6532c2815a8f81820650d Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 30 Jan 2002 16:27:34 +0000 Subject: [PATCH] [project @ 2002-01-30 16:27:34 by simonmar] Set $(HC) *after* including boilerplate.mk, which re-defines it. --- ghc/rts/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index 3bd7234..4d95ac4 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.58 2002/01/30 12:17:21 simonmar Exp $ +# $Id: Makefile,v 1.59 2002/01/30 16:27:34 simonmar Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -21,13 +21,14 @@ TOP=.. # set of suffix rules for compiling C code, using $(HC) rather than $(CC) # and prepending "-optc" to $(CC_OPTS). NB. must be done before including # boilerplate.mk below. -HC=$(GHC_INPLACE) ifneq "$(BootingFromHc)" "YES" UseGhcForCc = YES endif include $(TOP)/mk/boilerplate.mk +HC=$(GHC_INPLACE) + PACKAGE = rts WAYS=$(GhcLibWays) -- 1.7.10.4