[3.12] gh-120671: Fix PY_CHECK_CC_WARNING() in configure.ac (GH-120822) (#120986)

gh-120671: Fix PY_CHECK_CC_WARNING() in configure.ac (GH-120822)

Add missing space in AS_VAR_APPEND() on CFLAGS.
(cherry picked from commit 2106c9bef0)

Co-authored-by: Michael Allwright <allsey87@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-06-25 10:11:22 +02:00 committed by GitHub
parent 52bc99743c
commit 433a5f89c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 9 deletions

View file

@ -0,0 +1 @@
Fix failing configure tests due to a missing space when appending to CFLAGS.

16
configure generated vendored
View file

@ -9509,7 +9509,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wextra -Werror"
as_fn_append CFLAGS " -Wextra -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9627,7 +9627,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wunused-result -Werror"
as_fn_append CFLAGS " -Wunused-result -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9672,7 +9672,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wunused-parameter -Werror"
as_fn_append CFLAGS " -Wunused-parameter -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9713,7 +9713,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wint-conversion -Werror"
as_fn_append CFLAGS " -Wint-conversion -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9754,7 +9754,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wmissing-field-initializers -Werror"
as_fn_append CFLAGS " -Wmissing-field-initializers -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9795,7 +9795,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wsign-compare -Werror"
as_fn_append CFLAGS " -Wsign-compare -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9836,7 +9836,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wunreachable-code -Werror"
as_fn_append CFLAGS " -Wunreachable-code -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@ -9888,7 +9888,7 @@ then :
else $as_nop
py_cflags=$CFLAGS
as_fn_append CFLAGS "-Wstrict-prototypes -Werror"
as_fn_append CFLAGS " -Wstrict-prototypes -Werror"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */

View file

@ -2371,7 +2371,7 @@ AC_DEFUN([PY_CHECK_CC_WARNING], [
AS_VAR_PUSHDEF([py_var], [ac_cv_$1_]m4_normalize($2)[_warning])
AC_CACHE_CHECK([m4_ifblank([$3], [if we can $1 $CC $2 warning], [$3])], [py_var], [
AS_VAR_COPY([py_cflags], [CFLAGS])
AS_VAR_APPEND([CFLAGS], ["-W$2 -Werror"])
AS_VAR_APPEND([CFLAGS], [" -W$2 -Werror"])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
[AS_VAR_SET([py_var], [yes])],
[AS_VAR_SET([py_var], [no])])