https://github.com/python/cpython/commit/583cb03da8346e43acbdf53491195e7bce927eac
commit: 583cb03da8346e43acbdf53491195e7bce927eac
branch: main
author: Stefano Rivera <[email protected]>
committer: vstinner <[email protected]>
date: 2026-05-25T19:33:59+02:00
summary:
gh-131372: Fix a typo on "with_build_details_suffix" in configure (#150414)
Fix a typo in an error-handling path.
files:
M configure
M configure.ac
diff --git a/configure b/configure
index 8135fd7d184c05..657a7e106675c6 100755
--- a/configure
+++ b/configure
@@ -31747,7 +31747,7 @@ then :
withval=$with_build_details_suffix;
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for
--with-build-details-suffix" >&5
printf %s "checking for --with-build-details-suffix... " >&6; }
- if test "x$with_build_detials_suffix" = xno
+ if test "x$with_build_details_suffix" = xno
then :
as_fn_error $? "invalid --with-build-details-suffix option: expected custom
suffix or \"yes\", not \"no\"" "$LINENO" 5
diff --git a/configure.ac b/configure.ac
index a84ac25c1c4c50..fedd429facbe14 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7850,7 +7850,7 @@ AC_ARG_WITH([build-details-suffix],
[
AC_MSG_CHECKING([for --with-build-details-suffix])
AS_VAR_IF(
- [with_build_detials_suffix], [no],
+ [with_build_details_suffix], [no],
[AC_MSG_ERROR([invalid --with-build-details-suffix option: expected
custom suffix or "yes", not "no"])]
)
AS_VAR_IF(
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]