From be72e22c3891a65b400241880b3582bca74dae09 Mon Sep 17 00:00:00 2001 From: Ilya Tumaykin Date: Fri, 29 Jul 2016 01:53:01 +0100 Subject: [PATCH] Fix: Respect CFLAGS when building dunstify https://github.com/knopwob/dunst/issues/267 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3d31830..a70e532 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ dunst: ${OBJ} @${CC} ${CFLAGS} -o $@ ${OBJ} ${LDFLAGS} dunstify: - @${CC} -o $@ dunstify.c -std=c99 $(shell pkg-config --libs --cflags glib-2.0 libnotify) + @${CC} ${CFLAGS} -o $@ dunstify.c -std=c99 $(shell pkg-config --libs --cflags glib-2.0 libnotify) debug: ${OBJ} @echo CC -o $@