From b890569a44cf9c5afce6e5ca648dc9b589e964f9 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 5 Mar 2008 22:31:00 -0800 Subject: Use $(CC) in gcc_ok macro, not plain gcc Use $(CC) in gcc_ok macro, not plain gcc. This seems to work, iff the gcc_ok macro is declared with =, not := --- mtools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mtools') diff --git a/mtools/Makefile b/mtools/Makefile index 4b52cb67..7175bb3f 100644 --- a/mtools/Makefile +++ b/mtools/Makefile @@ -1,6 +1,6 @@ TMPFILE = $(shell mktemp /tmp/gcc_ok.XXXXXX) -gcc_ok = $(shell tmpf=$(TMPFILE); if gcc $(1) ../dummy.c -o $$tmpf 2>/dev/null; \ +gcc_ok = $(shell tmpf=$(TMPFILE); if $(CC) $(1) ../dummy.c -o $$tmpf 2>/dev/null; \ then echo '$(1)'; else echo '$(2)'; fi; rm -f $$tmpf) comma := , -- cgit v1.2.1