external/mpl/dhcp: Suppress -Werror=format-overflow error.

Add -Wno-error=format-overflow mdb6.c to prevent build failure.

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

Reviewed by: kamil@
This commit is contained in:
fox 2020-02-09 07:59:44 +00:00
parent b796f1c940
commit 84139b589c
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2019/10/30 00:25:00 christos Exp $
# $NetBSD: Makefile,v 1.3 2020/02/09 07:59:44 fox Exp $
.include <bsd.own.mk>
@ -19,6 +19,7 @@ FILES= dhcpd.conf
COPTS.ddns.c +=-Wno-stringop-overflow
.endif
COPTS.mdb6.c += -Wno-error=format-overflow
COPTS.omapi.c += -Wno-stack-protector
.include <bsd.prog.mk>