summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2019-02-04 09:51:47 +0000
committermrg <mrg@NetBSD.org>2019-02-04 09:51:47 +0000
commit7d510aa1191273df4f27b92b41d3f45449b05cea (patch)
tree2187629d04eb2a5cd0f8204f42e3131adfdd124f /hunt
parent2f8d2b7cde6122b350f19b5e530831f6d876ccff (diff)
downloadbsdgames-darwin-7d510aa1191273df4f27b92b41d3f45449b05cea.tar.gz
bsdgames-darwin-7d510aa1191273df4f27b92b41d3f45449b05cea.tar.zst
bsdgames-darwin-7d510aa1191273df4f27b92b41d3f45449b05cea.zip
apply -Wno-error=implicit-fallthrough on files that have fallthru
comments but are missed by the current checker.
Diffstat (limited to 'hunt')
-rw-r--r--hunt/huntd/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/hunt/huntd/Makefile b/hunt/huntd/Makefile
index 0981256f..131b7696 100644
--- a/hunt/huntd/Makefile
+++ b/hunt/huntd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2014/03/29 22:29:55 dholland Exp $
+# $NetBSD: Makefile,v 1.7 2019/02/04 09:51:48 mrg Exp $
PROG= huntd
SRCS= answer.c draw.c driver.c execute.c expl.c \
@@ -7,4 +7,11 @@ MAN= huntd.6
CPPFLAGS+=-I${.CURDIR}/../include
+.include <bsd.own.mk>
+
+# Has fallthru comment that is missed
+.if defined(HAVE_GCC) && ${HAVE_GCC} == 7 && ${ACTIVE_CC} == "gcc"
+COPTS.shots.c+= -Wno-error=implicit-fallthrough
+.endif
+
.include <bsd.prog.mk>