diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-03-01 17:38:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-01 17:38:32 (GMT) |
commit | 41baa03d30bc6b8a439ccca42b656d2c50392896 (patch) | |
tree | a767165c2d95b3c66cef4555ce8df8cfb9206aba /configure.ac | |
parent | dac8ff4c401f75e65a5eef1514f2d7987e63bbfe (diff) | |
download | cpython-41baa03d30bc6b8a439ccca42b656d2c50392896.zip cpython-41baa03d30bc6b8a439ccca42b656d2c50392896.tar.gz cpython-41baa03d30bc6b8a439ccca42b656d2c50392896.tar.bz2 |
gh-115806: Don't mangle output of configure 'ipv6 stack type' check (#116165)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b7671fa..103c249 100644 --- a/configure.ac +++ b/configure.ac @@ -4516,7 +4516,6 @@ ipv6lib=none ipv6trylibc=no if test "$ipv6" = yes -a "$cross_compiling" = no; then - AC_MSG_CHECKING([ipv6 stack type]) for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta; do case $i in @@ -4579,6 +4578,7 @@ if test "$ipv6" = yes -a "$cross_compiling" = no; then break fi done + AC_MSG_CHECKING([ipv6 stack type]) AC_MSG_RESULT([$ipv6type]) fi |