From 9b4ff0108e048f1463e7179948cd91ba674d30c5 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 2 Nov 2013 17:43:17 +0100 Subject: [PATCH] use $(CC) rather than 'gcc' https://sourceforge.net/p/notion/bugs/62/ --- ioncore/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioncore/Makefile b/ioncore/Makefile index 8e843fe6..e8c79381 100644 --- a/ioncore/Makefile +++ b/ioncore/Makefile @@ -51,7 +51,7 @@ include $(TOPDIR)/build/rules.mk # without -finstrument-functions profiling.o: profiling.c - gcc $(CFLAGS:-finstrument-functions=) -c profiling.c -o profiling.o + $(CC) $(CFLAGS:-finstrument-functions=) -c profiling.c -o profiling.o ioncore.a: $(OBJS) $(AR) $(ARFLAGS) $@ $+ -- 2.11.4.GIT