svn commit: r354837 - head/libexec/flua
Kyle Evans
kevans at FreeBSD.org
Tue Nov 19 00:02:57 UTC 2019
Author: kevans
Date: Tue Nov 19 00:02:56 2019
New Revision: 354837
URL: https://svnweb.freebsd.org/changeset/base/354837
Log:
flua: newer GCC complains about format-nonliteral at WARNS=2
Disable that one, too.
Modified:
head/libexec/flua/Makefile
Modified: head/libexec/flua/Makefile
==============================================================================
--- head/libexec/flua/Makefile Mon Nov 18 23:31:12 2019 (r354836)
+++ head/libexec/flua/Makefile Tue Nov 19 00:02:56 2019 (r354837)
@@ -9,6 +9,8 @@ PROG= flua
WARNS?= 2
MAN= # No manpage; this is internal.
+CWARNFLAGS.gcc+= -Wno-format-nonliteral
+
LIBADD= m
# Core functions
More information about the svn-src-all
mailing list