From 57b1eb1ccc074337cc64b86f5bbcedfb583deaeb Mon Sep 17 00:00:00 2001 From: David Kozub Date: Tue, 25 Nov 2014 18:51:43 +0100 Subject: 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 --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 \ -- cgit v1.2.3