From 3140e9a3a343d37a8d828ee27e16ad9f3f9ab389 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 31 Jul 2013 17:42:39 -0700 Subject: [PATCH] Remove -Werror -Werror just doesn't work because it changes too much between compiler versions. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d4eed713c..543d9e8e1 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ CC = gcc HOSTCC = gcc DEFINES += -D_GNU_SOURCE CCOPTS = -O2 -WFLAGS := -Wall -Wstrict-prototypes -Werror -Wmissing-prototypes +WFLAGS := -Wall -Wstrict-prototypes -Wmissing-prototypes WFLAGS += -Wmissing-declarations -Wold-style-definition CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) -- 2.47.2