https://github.com/python/cpython/commit/8b7cdc5e0c3ee9903d41a2bfc494148db32dc379
commit: 8b7cdc5e0c3ee9903d41a2bfc494148db32dc379
branch: main
author: Erlend E. Aasland <[email protected]>
committer: erlend-aasland <[email protected]>
date: 2024-10-26T17:11:42+02:00
summary:

gh-125698: Autoconf: Sync EXEEXT and ac_exeext (#125995)

files:
M configure
M configure.ac

diff --git a/configure b/configure
index b11f41d5379958..a4f253d7cff294 100755
--- a/configure
+++ b/configure
@@ -7323,6 +7323,9 @@ fi
 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $EXEEXT" >&5
 printf "%s\n" "$EXEEXT" >&6; }
 
+# Make sure we keep EXEEXT and ac_exeext sync'ed.
+ac_exeext=$EXEEXT
+
 # Test whether we're running on a non-case-sensitive system, in which
 # case we give a warning if no ext is given
 
diff --git a/configure.ac b/configure.ac
index d5bc739c34c90f..1534144bab3400 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1339,6 +1339,9 @@ AC_ARG_WITH([suffix],
 ])
 AC_MSG_RESULT([$EXEEXT])
 
+# Make sure we keep EXEEXT and ac_exeext sync'ed.
+AS_VAR_SET([ac_exeext], [$EXEEXT])
+
 # Test whether we're running on a non-case-sensitive system, in which
 # case we give a warning if no ext is given
 AC_SUBST([BUILDEXEEXT])

_______________________________________________
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]

Reply via email to