From: Stephen Hemminger Date: Thu, 1 Aug 2013 00:42:39 +0000 (-0700) Subject: Remove -Werror X-Git-Tag: v3.11.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3140e9a3a343d37a8d828ee27e16ad9f3f9ab389;p=thirdparty%2Fiproute2.git Remove -Werror -Werror just doesn't work because it changes too much between compiler versions. --- 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)