[Libreoffice-commits] core.git: Branch 'aoo/trunk' - configure.in
Jürgen Schmidt
jsc at apache.org
Thu May 23 11:07:19 PDT 2013
configure.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a089191a1fc0e32b322321a29aecf2e10b1d4602
Author: Jürgen Schmidt <jsc at apache.org>
Date: Thu May 23 17:34:03 2013 +0000
#122010# prepare configure to support Python 2.7.5 and newer on MacOS, 2.7.1 is now still supported
diff --git a/configure.in b/configure.in
index d403d0d..72e2c29 100644
--- a/configure.in
+++ b/configure.in
@@ -4093,7 +4093,7 @@ if test "$_os" = "Darwin" && test "$with_system_python" != "no"; then
_python_hexversion=`$_python -c "import sys; print sys.hexversion;"`
dnl hex version of Python 2.7.1 = 34013680
- if test "$_python_hexversion" >= "34013680" ; then
+ if test $_python_hexversion -ge 34013680 ; then
AC_MSG_RESULT([compiling against system python (version $_python_version)])
_python_ver=`$_python -c "import distutils.sysconfig; print(distutils.sysconfig.get_config_var('VERSION'));"`
More information about the Libreoffice-commits
mailing list