Author: hdu Date: Wed May 29 08:08:38 2013 New Revision: 1487392 URL: http://svn.apache.org/r1487392 Log: fix build breaker in python3 environments
Parantheses are mandatory for the print statement since PEP-3105 (http://www.python.org/dev/peps/pep-3105/) Modified: openoffice/trunk/main/configure.in Modified: openoffice/trunk/main/configure.in URL: http://svn.apache.org/viewvc/openoffice/trunk/main/configure.in?rev=1487392&r1=1487391&r2=1487392&view=diff ============================================================================== --- openoffice/trunk/main/configure.in (original) +++ openoffice/trunk/main/configure.in Wed May 29 08:08:38 2013 @@ -4090,7 +4090,7 @@ if test "$_os" = "Darwin" && test "$with with_system_python=yes _python="/Library/Frameworks/Python.framework/Versions/Current/bin/python" - _python_hexversion=`$_python -c "import sys; print sys.hexversion;"` + _python_hexversion=`$_python -c "import sys; print(sys.hexversion);"` dnl hex version of Python 2.7.1 = 34013680 if test $_python_hexversion -ge 34013680 ; then