diff options
| author | sof <unknown> | 2002-08-09 22:13:51 +0000 |
|---|---|---|
| committer | sof <unknown> | 2002-08-09 22:13:51 +0000 |
| commit | ebc0a34ae9e5d91b623c22259c7816c7f7a302c5 (patch) | |
| tree | 17a13e387aa460feb8962479d8e61fd28e480e8b | |
| parent | a0d19e3374e964b4cce326d63e387ddd8a31d401 (diff) | |
| download | haskell-ebc0a34ae9e5d91b623c22259c7816c7f7a302c5.tar.gz | |
[project @ 2002-08-09 22:13:51 by sof]
UseGhcForCc: don't use "ifneq" to control its setting; too strict.
Resort to a $(shell ..) hack.
| -rw-r--r-- | ghc/rts/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index 37114fbe0a..8e7443eee8 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.74 2002/08/09 20:59:41 sof Exp $ +# $Id: Makefile,v 1.75 2002/08/09 22:13:51 sof Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -21,9 +21,7 @@ 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. -ifneq "$(BootingFromHc)" "YES" -UseGhcForCc = YES -endif +UseGhcForCc = $(shell if (test "x$(BootingFromHc)" = "xYES"); then echo YES; else echo NO; fi) include $(TOP)/mk/boilerplate.mk |
