From 3a0b151b5baec6c41366e4a5dab31d89cf55caef Mon Sep 17 00:00:00 2001 From: François Revel Date: Sat, 21 Mar 2009 23:22:59 +0000 Subject: Fix the fix... $(CC) will work better for C files... svn path=/trunk/netsurf/; revision=6814 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0e12bcbb..806fd1b79 100644 --- a/Makefile +++ b/Makefile @@ -758,7 +758,7 @@ ifeq ($(GCCVER),2) define compile_target_c $$(OBJROOT)/$(2): $$(OBJROOT)/created $$(DEPROOT)/$(3) $$(VQ)echo " COMPILE: $(1)" - $$(Q)$$(CXX) $$(CFLAGS) -o $$@ -c $(1) + $$(Q)$$(CC) $$(CFLAGS) -o $$@ -c $(1) endef else -- cgit v1.2.3