usr.bin/config: Suppress -Werror=stringop-truncation error.

Add GCC_NO_STRINGOP_TRUNCATION to scan.c to prevent build failure.

Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag.
gcc version 8.3.0

Reviewed by: kamil@
This commit is contained in:
fox 2020-02-07 20:17:48 +00:00
parent c308ca874b
commit 8d874901c0
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.11 2019/10/13 07:28:14 mrg Exp $
# $NetBSD: Makefile,v 1.12 2020/02/07 20:17:48 fox Exp $
# from: @(#)Makefile 8.2 (Berkeley) 4/19/94
.include <bsd.own.mk>
@ -17,6 +17,8 @@ YHEADER=1
CPPFLAGS+=-I${.CURDIR} -I.
CPPFLAGS+= -I${NETBSDSRCDIR}/usr.bin/cksum
COPTS.scan.c+= ${GCC_NO_STRINGOP_TRUNCATION}
.ifndef HOSTPROG
LDADD+=-lutil
DPADD+=${LIBUTIL}