[Libreoffice-commits] core.git: configure.ac

Tor Lillqvist (via logerrit) logerrit at kemper.freedesktop.org
Mon Jul 6 08:13:25 UTC 2020


 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0a08f981a6de90f9b9b7b75dc79d5e9b8b6e2707
Author:     Tor Lillqvist <tml at iki.fi>
AuthorDate: Sun Jul 5 18:53:20 2020 +0300
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Mon Jul 6 10:12:40 2020 +0200

    Allow also --disable-python on macOS
    
    Change-Id: I27cdd86a730a042d6e846c90319c306f5a3b35ad
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98159
    Tested-by: Jenkins
    Reviewed-by: Tor Lillqvist <tml at collabora.com>

diff --git a/configure.ac b/configure.ac
index efe8fb83b67b..cd1e6a52c615 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8839,8 +8839,8 @@ AC_SUBST(XMLLINT)
 # Optionally user can pass an option to configure, i. e.
 # ./configure PYTHON=/usr/bin/python
 # =====================================================================
-if test $_os = Darwin -a "$enable_python" != fully-internal -a "$enable_python" != internal; then
-    # Only allowed choices for macOS are 'internal' (default) and 'fully-internal'
+if test $_os = Darwin -a "$enable_python" != no -a "$enable_python" != fully-internal -a "$enable_python" != internal; then
+    # Only allowed choices for macOS are 'no', 'internal' (default), and 'fully-internal'
     enable_python=internal
 fi
 if test "$build_os" != "cygwin" -a "$enable_python" != fully-internal; then


More information about the Libreoffice-commits mailing list