Repository: qpid-proton Updated Branches: refs/heads/master e4d580b18 -> acbaa502b
PROTON-1123: fix print syntax error in CMakeLists.txt Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/acbaa502 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/acbaa502 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/acbaa502 Branch: refs/heads/master Commit: acbaa502bbd11939390156f41684b4f66aceb311 Parents: e4d580b Author: Ken Giusti <[email protected]> Authored: Tue Feb 2 12:08:32 2016 -0500 Committer: Ken Giusti <[email protected]> Committed: Tue Feb 2 12:08:32 2016 -0500 ---------------------------------------------------------------------- proton-c/bindings/python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/acbaa502/proton-c/bindings/python/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/CMakeLists.txt b/proton-c/bindings/python/CMakeLists.txt index f2ec640..10ae572 100644 --- a/proton-c/bindings/python/CMakeLists.txt +++ b/proton-c/bindings/python/CMakeLists.txt @@ -42,7 +42,7 @@ find_package(PythonInterp REQUIRED) if (CHECK_SYSINSTALL_PYTHON) execute_process(COMMAND ${PYTHON_EXECUTABLE} - -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True)" + -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(True))" OUTPUT_VARIABLE PYTHON_SITEARCH_PACKAGES_DEFAULT OUTPUT_STRIP_TRAILING_WHITESPACE) else () --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
