From: torrinfail Date: Tue, 28 Jul 2020 17:07:43 +0000 (-0600) Subject: Merge pull request #17 from tph5595/patch-1 X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=8893f2d08aed826532fbb7a7b63e20c5bd938563;hp=dcb198d7d7da45b8d7cd2d241b42f8405bd049b1;p=dwmblocks.git 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 --- diff --git a/Makefile b/Makefile index 3336e3c..ad7e701 100644 --- 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