commit 8893f2d08aed826532fbb7a7b63e20c5bd938563
parent dcb198d7d7da45b8d7cd2d241b42f8405bd049b1
Author: torrinfail <torrinfail@gmail.com>
Date: Tue, 28 Jul 2020 11:07:43 -0600
Merge pull request #17 from tph5595/patch-1
Fixed argument order for gcc. This most likely fixes building on debian based systems. Thanks to tph5595
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -1,7 +1,7 @@
PREFIX ?= /usr/local
CC ?= cc
output: dwmblocks.c blocks.h
- ${CC} `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
+ ${CC} dwmblocks.c `pkg-config --cflags x11` `pkg-config --libs x11` -o dwmblocks
clean:
rm -f *.o *.gch dwmblocks
install: output