spot / rpms / cross-gcc

Forked from rpms/cross-gcc 5 years ago
Clone
1abc147
2017-02-25  Jakub Jelinek  <jakub@redhat.com>
1abc147
1abc147
	* configure.ac: When adding -Wno-format, also add -Wno-format-security.
1abc147
	* configure: Regenerated.
1abc147
1abc147
--- gcc/configure.ac.jj	2017-02-13 12:20:53.000000000 +0100
1abc147
+++ gcc/configure.ac	2017-02-25 12:42:32.859175403 +0100
1abc147
@@ -481,7 +481,7 @@ AC_ARG_ENABLE(build-format-warnings,
1abc147
   AS_HELP_STRING([--disable-build-format-warnings],[don't use -Wformat while building GCC]),
1abc147
   [],[enable_build_format_warnings=yes])
1abc147
 AS_IF([test $enable_build_format_warnings = no],
1abc147
-      [wf_opt=-Wno-format],[wf_opt=])
1abc147
+      [wf_opt="-Wno-format -Wno-format-security"],[wf_opt=])
1abc147
 ACX_PROG_CXX_WARNING_OPTS(
1abc147
 	m4_quote(m4_do([-W -Wall -Wno-narrowing -Wwrite-strings ],
1abc147
 		       [-Wcast-qual $wf_opt])), [loose_warn])
1abc147
--- gcc/configure.jj	2017-02-13 12:20:52.000000000 +0100
1abc147
+++ gcc/configure	2017-02-25 12:42:50.041946391 +0100
1abc147
@@ -6647,7 +6647,7 @@ else
1abc147
 fi
1abc147
 
1abc147
 if test $enable_build_format_warnings = no; then :
1abc147
-  wf_opt=-Wno-format
1abc147
+  wf_opt="-Wno-format -Wno-format-security"
1abc147
 else
1abc147
   wf_opt=
1abc147
 fi