openssl: CWARNFLAGS, not COPTS, for -Wno-error=...

COPTS gets put too early, so these are cancelled out by -W flags
added later by bsd.sys.mk.  (How did this ever work???)
This commit is contained in:
riastradh 2023-05-25 19:12:51 +00:00
parent 7c8b150a94
commit 91fcf17482
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.openssl,v 1.18 2023/05/25 19:12:42 riastradh Exp $
# $NetBSD: Makefile.openssl,v 1.19 2023/05/25 19:12:51 riastradh Exp $
.ifndef _MAKEFILE_OPENSSL_INCLUDED
_MAKEFILE_OPENSSL_INCLUDED=1
@ -7,10 +7,10 @@ _MAKEFILE_OPENSSL_INCLUDED=1
WARNS=3
# would require changing a lot of code
COPTS+= -Wno-error=cast-qual
COPTS+= -Wno-error=char-subscripts # XXX likely real ctype(3) missing cast bugs
COPTS+= -Wno-error=missing-field-initializers
COPTS+= -Wno-error=shadow
CWARNFLAGS+= -Wno-error=cast-qual
CWARNFLAGS+= -Wno-error=char-subscripts # XXX likely real ctype(3) missing cast bugs
CWARNFLAGS+= -Wno-error=missing-field-initializers
CWARNFLAGS+= -Wno-error=shadow
CWARNFLAGS.gcc+= -Wno-error=discarded-qualifiers
CWARNFLAGS.clang+= -Wno-error=ignored-qualifiers