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.sbin/identd/Makefile | |
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.sbin/identd/Makefile')
-rw-r--r-- | usr.sbin/identd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/identd/Makefile b/usr.sbin/identd/Makefile index 94dd280cf7f..4bf6733d63f 100644 --- a/usr.sbin/identd/Makefile +++ b/usr.sbin/identd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.2 2016/02/01 19:08:33 jca Exp $ +# $OpenBSD: Makefile,v 1.3 2017/04/16 10:16:35 jsg Exp $ PROG= identd LDADD= -levent DPADD= ${LIBEVENT} -CFLAGS+= -Wall -Werror +CFLAGS+= -Wall MAN= identd.8 |