From ec8743aa2ddf572f6abec8854ab2da53579a84b7 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 14 Jun 2000 13:14:42 +0000 Subject: [PATCH] [project @ 2000-06-14 13:14:42 by simonmar] don't use $(WithGhcHc) to build the driver, use $(HC) instead. --- ghc/driver/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ghc/driver/Makefile b/ghc/driver/Makefile index 819be30..da93bab 100644 --- a/ghc/driver/Makefile +++ b/ghc/driver/Makefile @@ -1,14 +1,12 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.34 2000/06/14 11:07:47 simonmar Exp $ +# $Id: Makefile,v 1.35 2000/06/14 13:14:42 simonmar Exp $ # TOP=.. CURRENT_DIR=ghc/driver include $(TOP)/mk/boilerplate.mk -ifneq "$(GhcWithHscBuiltViaC)" "YES" -HC=$(WithGhcHc) -else +ifeq "$(GhcWithHscBuiltViaC)" "YES" HC=$(GHC_INPLACE) endif -- 1.7.10.4