NetBSD/usr.sbin/srtconfig/Makefile
fox 709709c6c1 usr.sbin/srtconfig: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to srtconfig.c to prevent build failure.

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

Reviewed by: kamil@
2020-02-09 15:10:31 +00:00

10 lines
203 B
Makefile

# $NetBSD: Makefile,v 1.3 2020/02/09 15:10:31 fox Exp $
# This file is in the public domain.
PROG= srtconfig
SRCS= srtconfig.c
COPTS.srtconfig.c+= ${GCC_NO_STRINGOP_TRUNCATION}
.include <bsd.prog.mk>