Sun Jun 24 19:27:26 2018 UTC ()
Fix typo in previous

The -Wno-format-extra-args argument to Clang/LLVM needs trailing 's'.

Noted by <joerg>


(kamil)
diff -r1.4 -r1.5 src/external/gpl2/gettext/lib/libnlspr/Makefile

cvs diff -r1.4 -r1.5 src/external/gpl2/gettext/lib/libnlspr/Makefile (expand / switch to unified diff)

--- src/external/gpl2/gettext/lib/libnlspr/Makefile 2018/06/23 20:15:23 1.4
+++ src/external/gpl2/gettext/lib/libnlspr/Makefile 2018/06/24 19:27:26 1.5
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.4 2018/06/23 20:15:23 kamil Exp $ 1# $NetBSD: Makefile,v 1.5 2018/06/24 19:27:26 kamil Exp $
2 2
3LIBISPRIVATE= yes 3LIBISPRIVATE= yes
4 4
5.include <bsd.own.mk> 5.include <bsd.own.mk>
6 6
7LIB= nlspr 7LIB= nlspr
8SRCS= \ 8SRCS= \
9clean-temp.c \ 9clean-temp.c \
10dir-list.c \ 10dir-list.c \
11file-list.c \ 11file-list.c \
12format-awk.c \ 12format-awk.c \
13format-boost.c \ 13format-boost.c \
14format-c.c \ 14format-c.c \
@@ -92,22 +92,22 @@ COPTS.msgl-iconv.c = -Wno-stack-protecto @@ -92,22 +92,22 @@ COPTS.msgl-iconv.c = -Wno-stack-protecto
92COPTS.plural-exp.c = -Wno-stack-protector 92COPTS.plural-exp.c = -Wno-stack-protector
93COPTS.plural.c = -Wno-stack-protector 93COPTS.plural.c = -Wno-stack-protector
94COPTS.po-charset.c = -Wno-stack-protector 94COPTS.po-charset.c = -Wno-stack-protector
95COPTS.po-gram-gen.c = -Wno-stack-protector 95COPTS.po-gram-gen.c = -Wno-stack-protector
96COPTS.read-tcl.c = -Wno-stack-protector 96COPTS.read-tcl.c = -Wno-stack-protector
97COPTS.write-csharp.c = -Wno-stack-protector 97COPTS.write-csharp.c = -Wno-stack-protector
98COPTS.write-java.c = -Wno-stack-protector 98COPTS.write-java.c = -Wno-stack-protector
99COPTS.write-mo.c = -Wno-stack-protector 99COPTS.write-mo.c = -Wno-stack-protector
100COPTS.write-po.c = -Wno-stack-protector 100COPTS.write-po.c = -Wno-stack-protector
101COPTS.write-tcl.c = -Wno-stack-protector 101COPTS.write-tcl.c = -Wno-stack-protector
102COPTS.msgl-fsearch.c = -Wno-variably-modified 102COPTS.msgl-fsearch.c = -Wno-variably-modified
103 103
104CWARNFLAGS.clang+= -Wno-tautological-compare 104CWARNFLAGS.clang+= -Wno-tautological-compare
105CWARNFLAGS.clang+= -Wno-format-extra-arg 105CWARNFLAGS.clang+= -Wno-format-extra-args
106 106
107.include <bsd.lib.mk> 107.include <bsd.lib.mk>
108 108
109# Override <sys.mk> double suffix rules to prevent *.y being yacced to *.[ch] 109# Override <sys.mk> double suffix rules to prevent *.y being yacced to *.[ch]
110# (The latter already exist in the ${DIST}/gettext directory.) 110# (The latter already exist in the ${DIST}/gettext directory.)
111# 111#
112.y.c: 112.y.c:
113 @${_MKSHECHO} "# skipping yacc ${.CURDIR:T}/${.TARGET:T}" 113 @${_MKSHECHO} "# skipping yacc ${.CURDIR:T}/${.TARGET:T}"