Fix: Respect CFLAGS when building dunstify

https://github.com/knopwob/dunst/issues/267
This commit is contained in:
Ilya Tumaykin 2016-07-29 01:53:01 +01:00 committed by Eizen
parent 4f16213f9f
commit be72e22c38

View File

@ -43,7 +43,7 @@ dunst: ${OBJ}
@${CC} ${CFLAGS} -o $@ ${OBJ} ${LDFLAGS} @${CC} ${CFLAGS} -o $@ ${OBJ} ${LDFLAGS}
dunstify: 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} debug: ${OBJ}
@echo CC -o $@ @echo CC -o $@