This is an automated email from the ASF dual-hosted git repository.
truckman pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new d56063e185 Fix previous python 3.12 commit.
d56063e185 is described below
commit d56063e1856f58ab031c40310f34b71e65afca3e
Author: Don Lewis <[email protected]>
AuthorDate: Tue Jan 20 01:19:25 2026 -0800
Fix previous python 3.12 commit.
The wrong version of the configure change was committed.
---
main/configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main/configure.ac b/main/configure.ac
index 78ff214ac9..3f67e5b3fb 100644
--- a/main/configure.ac
+++ b/main/configure.ac
@@ -4002,7 +4002,7 @@ elif test -n "$with_system_python" -o -n
"$with_system_libs" && \
AC_MSG_RESULT([external])
AM_PATH_PYTHON([2.7])
- if ! $_python -c "import distutils.sysconfig;"; then
+ if ! $PYTHON -c "import distutils.sysconfig;"; then
AC_MSG_ERROR([python setuptools module is required to provide distutils
for python >= 3.12])
fi
python_include=`$PYTHON -c "import distutils.sysconfig;
print(distutils.sysconfig.get_config_var('INCLUDEPY'));"`