From: David Kozub Date: Tue, 25 Nov 2014 17:51:43 +0000 (+0100) Subject: build: add missing \ in src/Makefile.am (AM_CPPFLAGS) X-Git-Tag: v0.4~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=57b1eb1ccc074337cc64b86f5bbcedfb583deaeb;p=thirdparty%2Fnftables.git build: add missing \ in src/Makefile.am (AM_CPPFLAGS) The missing \ at the end of the line causes LIBMNL_CFLAGS and LIBNFTNL_CFLAGS to be ignored. This causes build failure if the libmnl or libnftnl headers are not in a path that's already searched by the C compiler. Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/Makefile.am b/src/Makefile.am index e8afd464..d53c347d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,7 +3,7 @@ sbin_PROGRAMS = nft CLEANFILES = scanner.c parser_bison.c AM_CPPFLAGS = -I$(top_srcdir)/include -AM_CPPFLAGS += -DDEFAULT_INCLUDE_PATH="\"${sysconfdir}\"" -DDEBUG +AM_CPPFLAGS += -DDEFAULT_INCLUDE_PATH="\"${sysconfdir}\"" -DDEBUG \ ${LIBMNL_CFLAGS} ${LIBNFTNL_CFLAGS} AM_CFLAGS = -Wall \