From 69b253317e6845a1b4bba5d0458bfcf0e8f4638c Mon Sep 17 00:00:00 2001 From: sebc Date: Wed, 14 Mar 2001 21:22:48 +0000 Subject: [PATCH] [project @ 2001-03-14 21:22:48 by sebc] When compiling C bits, prefix CC_OPTS with -optc. --- ghc/compiler/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 3686b00..eb5dbf8 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.142 2001/03/13 15:37:50 simonmar Exp $ +# $Id: Makefile,v 1.143 2001/03/14 21:22:48 sebc Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -152,6 +152,7 @@ HC=$(GHC) # Use GHC for compiling C bits # CC = $(HC) +CC_OPTS := $(addprefix -optc, $(CC_OPTS)) # magic from GNU make manual to convert a list of values # into a colon-separated list -- 1.7.10.4