Repository: qpid-proton Updated Branches: refs/heads/0.12.x de397c5fc -> 334ac2f3c
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/334ac2f3 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/334ac2f3 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/334ac2f3 Branch: refs/heads/0.12.x Commit: 334ac2f3c98ee9dd0f243cc5d89ecfb4b008417d Parents: de397c5 Author: Ken Giusti <[email protected]> Authored: Tue Feb 2 12:08:32 2016 -0500 Committer: Ken Giusti <[email protected]> Committed: Tue Feb 2 13:53:55 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/334ac2f3/proton-c/bindings/python/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/CMakeLists.txt b/proton-c/bindings/python/CMakeLists.txt index 157a080..5e497c6 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]
