From: Laurence J. Lane Date: Thu, 22 Aug 2013 16:44:47 +0000 (-0400) Subject: iptables: extensions/GNUMakefile.in use CPPFLAGS X-Git-Tag: v1.4.21~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b90e798596465f0ea2daff75d95f4f978f0a8377;p=thirdparty%2Fiptables.git iptables: extensions/GNUMakefile.in use CPPFLAGS "All other Makefiles add CPPFLAGS to ${COMPILE} (automake), but GNUmakefile.in doesn't set it." http://bugs.debian.org/665286 Signed-off-by: Laurence J. Lane Signed-off-by: Pablo Neira Ayuso --- diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in index 14e7c576..c5d88446 100644 --- a/extensions/GNUmakefile.in +++ b/extensions/GNUmakefile.in @@ -21,7 +21,7 @@ regular_CPPFLAGS = @regular_CPPFLAGS@ kinclude_CPPFLAGS = @kinclude_CPPFLAGS@ AM_CFLAGS = ${regular_CFLAGS} -AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_builddir}/include -I${top_builddir} -I${top_srcdir}/include ${kinclude_CPPFLAGS} +AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_builddir}/include -I${top_builddir} -I${top_srcdir}/include ${kinclude_CPPFLAGS} ${CPPFLAGS} AM_DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@ AM_LDFLAGS = @noundef_LDFLAGS@