Module Name: src
Committed By: mrg
Date: Thu Apr 15 01:55:21 UTC 2021
Modified Files:
src/games/hunt/huntd: Makefile
Log Message:
one port complains about string overflow here that i can't see.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/games/hunt/huntd/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/hunt/huntd/Makefile
diff -u src/games/hunt/huntd/Makefile:1.9 src/games/hunt/huntd/Makefile:1.10
--- src/games/hunt/huntd/Makefile:1.9 Mon Apr 12 02:54:08 2021
+++ src/games/hunt/huntd/Makefile Thu Apr 15 01:55:21 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2021/04/12 02:54:08 mrg Exp $
+# $NetBSD: Makefile,v 1.10 2021/04/15 01:55:21 mrg Exp $
PROG= huntd
SRCS= answer.c draw.c driver.c execute.c expl.c \
@@ -12,5 +12,6 @@ CPPFLAGS+=-I${.CURDIR}/../include
# Appears wrong - should not exceed bounds of array.
COPTS.answer.c+= ${GCC_NO_STRINGOP_OVERFLOW}
COPTS.shots.c+= ${GCC_NO_STRINGOP_OVERFLOW}
+COPTS.driver.c+= ${GCC_NO_STRINGOP_OVERFLOW}
.include <bsd.prog.mk>