From: simonmar Date: Wed, 14 Jun 2000 13:14:42 +0000 (+0000) Subject: [project @ 2000-06-14 13:14:42 by simonmar] X-Git-Tag: Approximately_9120_patches~4199 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ec8743aa2ddf572f6abec8854ab2da53579a84b7;p=ghc-hetmet.git [project @ 2000-06-14 13:14:42 by simonmar] don't use $(WithGhcHc) to build the driver, use $(HC) instead. --- 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