Remove -Werror

-Werror just doesn't work because it changes too much
between compiler versions.
This commit is contained in:
Stephen Hemminger 2013-07-31 17:42:39 -07:00
parent 77620be89a
commit 3140e9a3a3

View File

@ -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)