From 702327dfbdb9cfcf83343781289560d5d09e7ec6 Mon Sep 17 00:00:00 2001 From: reyk Date: Wed, 3 Jun 2015 19:57:53 +0000 Subject: [PATCH] Remove -Werror from the Makefile: as it happened with asprintf, it breaks the tree if any new compiler warnings get enabled, especially with -Wall. We do not want to use it in the tree, except for some very special places. As discussed with deraadt@ --- lib/libfuse/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libfuse/Makefile b/lib/libfuse/Makefile index 17892c6d5dd..93374b5a54a 100644 --- a/lib/libfuse/Makefile +++ b/lib/libfuse/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2013/08/08 06:41:05 jmc Exp $ +# $OpenBSD: Makefile,v 1.7 2015/06/03 19:57:53 reyk Exp $ LIB= fuse MAN= fuse_main.3 @@ -20,7 +20,7 @@ MLINKS= fuse_main.3 fuse_version.3 \ fuse_main.3 fuse_destroy.3 \ fuse_main.3 fuse_teardown.3 -CFLAGS+= -Wall -g -Werror -Wshadow -Wmissing-prototypes +CFLAGS+= -Wall -g -Wshadow -Wmissing-prototypes CFLAGS+= -Wstrict-prototypes -Wsign-compare CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2 -- 2.20.1