diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-06-03 19:57:54 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-06-03 19:57:54 +0000 |
commit | 24bc5e5ffea7229b4d3716ba147be09c8d7c0e6c (patch) | |
tree | c9fe2b4762dc510df634931d4fe9b62c469f282f /lib/libfuse | |
parent | 58ab221dda9e9ee22f8ce8ff7a2c9397f4931063 (diff) |
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@
Diffstat (limited to 'lib/libfuse')
-rw-r--r-- | lib/libfuse/Makefile | 4 |
1 files 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 |