From 5a650703d47e10aa386406c855eff5a593b2120b Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Mon, 4 Feb 2013 08:51:44 -0800 Subject: [PATCH] Makefile: make warnings into errors Don't let contributions cause warnings. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 46a5ad9b9..6ba36e8db 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ CC = gcc HOSTCC = gcc DEFINES += -D_GNU_SOURCE CCOPTS = -O2 -WFLAGS = -Wall -Wstrict-prototypes +WFLAGS = -Wall -Wstrict-prototypes -Werror CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) YACCFLAGS = -d -t -v -- 2.47.3