diff mbox

[nft] build: add missing backslash to list of CFLAGS

Message ID 20170113142409.15705-1-tklauser@distanz.ch
State Accepted
Delegated to: Pablo Neira
Headers show

Commit Message

Tobias Klauser Jan. 13, 2017, 2:24 p.m. UTC
Due to a missing backslash in the AM_CFLAGS list some warning flags do
not get added to the generated default CLFAGS. Add the missing backslash
to include them as well.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
---
 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Pablo Neira Ayuso Jan. 16, 2017, 10:37 a.m. UTC | #1
On Fri, Jan 13, 2017 at 03:24:09PM +0100, Tobias Klauser wrote:
> Due to a missing backslash in the AM_CFLAGS list some warning flags do
> not get added to the generated default CLFAGS. Add the missing backslash
> to include them as well.

Also applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/src/Makefile.am b/src/Makefile.am
index 65cb4b403754..c6586f5f03c2 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -16,7 +16,7 @@  AM_CFLAGS = -Wall								\
 	    -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations	\
 	    -Wdeclaration-after-statement -Wsign-compare -Winit-self		\
 	    -Wformat-nonliteral -Wformat-security -Wmissing-format-attribute	\
-	    -Wcast-align -Wundef -Wbad-function-cast
+	    -Wcast-align -Wundef -Wbad-function-cast				\
 	    -Waggregate-return -Wunused -Wwrite-strings