summaryrefslogtreecommitdiff
path: root/usr.bin/sdiff/Makefile
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2017-09-05 06:27:39 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2017-09-05 06:27:39 +0000
commitff01ba4cf3aa07b482df6328a3bd6d01b656d878 (patch)
tree562deff9e7de5c5246c77c5bcac1607b5db5f3b5 /usr.bin/sdiff/Makefile
parent6bd978da382762c3fc369a15a104c55d8f744b85 (diff)
Add -Wno-sign-compare, the single warning produced is a false positive;
ok deraadt@
Diffstat (limited to 'usr.bin/sdiff/Makefile')
-rw-r--r--usr.bin/sdiff/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sdiff/Makefile b/usr.bin/sdiff/Makefile
index e626f3667d1..67b5d14de15 100644
--- a/usr.bin/sdiff/Makefile
+++ b/usr.bin/sdiff/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.4 2006/02/20 08:38:18 otto Exp $
+# $OpenBSD: Makefile,v 1.5 2017/09/05 06:27:38 otto Exp $
PROG=sdiff
SRCS=common.c edit.c sdiff.c
-COPTS+=-Wall -W
+COPTS+=-Wall -Wextra -Wno-sign-compare
LDADD+= -lutil
DPADD+= ${LIBUTIL}