diff options
Diffstat (limited to 'mtools')
-rw-r--r-- | mtools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 := , |