diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-01-03 16:36:50 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-01-03 16:36:50 +0100 |
commit | a04661685354336efdf1e30bfd6eeb67bc4c8fd6 (patch) | |
tree | 53af0fe0a26d2cc846b729698e2e06f5980b618a | |
parent | d30a9301ee5f83b331712012d030fd201c333377 (diff) |
Makefile: tiny typo: add space after SFEED_CURSES_CPPFLAGS
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ SFEED_CPPFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE # set $SFEED_CURSES to empty to not build sfeed_curses. SFEED_CURSES = sfeed_curses SFEED_CURSES_CFLAGS = ${CFLAGS} -SFEED_CURSES_CPPFLAGS =-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE \ +SFEED_CURSES_CPPFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE \ -DSFEED_THEME=\"themes/${SFEED_THEME}.h\" ${SFEED_CPPFLAGS} SFEED_CURSES_LDFLAGS = ${LDFLAGS} -lcurses |