Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Jan 2026 09:10:10 +0000
From:      Don Lewis <truckman@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 1e4d3fa935d2 - main - editors/openoffice-devel: fix previous commit
Message-ID:  <696f4672.25366.12e41009@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by truckman:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1e4d3fa935d2bb7d1a23bd98aad15588feb96c5c

commit 1e4d3fa935d2bb7d1a23bd98aad15588feb96c5c
Author:     Don Lewis <truckman@FreeBSD.org>
AuthorDate: 2026-01-20 09:02:59 +0000
Commit:     Don Lewis <truckman@FreeBSD.org>
CommitDate: 2026-01-20 09:10:01 +0000

    editors/openoffice-devel: fix previous commit
    
    Fix the previous commit for the python 3.12 build fix.  The incorrect
    version of the configure change was inadvertently committed.
    
    PR:             292190
    Fixes:          96fb41419355 - main - editors/openoffice-devel: Fix with python >= 3.12
---
 editors/openoffice-devel/files/patch-configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/editors/openoffice-devel/files/patch-configure.ac b/editors/openoffice-devel/files/patch-configure.ac
index dcd67f453d8d..e6e5b0eae8f7 100644
--- a/editors/openoffice-devel/files/patch-configure.ac
+++ b/editors/openoffice-devel/files/patch-configure.ac
@@ -14,7 +14,7 @@
     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'));"`


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?696f4672.25366.12e41009>