diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-04-16 10:16:36 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-04-16 10:16:36 +0000 |
commit | 1fc42647adca7a8f12903c6f04115e18bad657bf (patch) | |
tree | e69a81a540e13863c278a71a1b1c4778b013f409 /usr.bin/pctr | |
parent | b01c4da9faaa4b7592f048fd572034f61ce57f62 (diff) |
Different compilers and versions of compilers have different warnings.
Remove -Werror to give code a greater chance of building.
ok deraadt@ florian@
Diffstat (limited to 'usr.bin/pctr')
-rw-r--r-- | usr.bin/pctr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/pctr/Makefile b/usr.bin/pctr/Makefile index d5c8aa14ecd..b78b7932bec 100644 --- a/usr.bin/pctr/Makefile +++ b/usr.bin/pctr/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.8 2012/09/12 09:19:54 haesbaert Exp $ +# $OpenBSD: Makefile,v 1.9 2017/04/16 10:16:35 jsg Exp $ MAN=pctr.1 -CFLAGS+=-W -Wall -Werror +CFLAGS+=-W -Wall CDIAGFLAGS= .if ${MACHINE} == "amd64" || ${MACHINE} == "i386" |