commit 17ab5387c644cecc8edbc20552b00e00701b73b8 parent 03bb532f65248cda454c924618de941f6509857d Author: Matthias Balk <mbalk@mbalk.de> Date: Wed, 2 Oct 2019 12:01:24 +0200 Bugfix: use specified compiler in Makefile Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -2,4 +2,4 @@ CC = gcc LINKER_FLAGS = `pkg-config --libs xcb` xruler: xruler.c - gcc xruler.c $(LINKER_FLAGS) -o xruler + $(CC) xruler.c $(LINKER_FLAGS) -o xruler