Repository: mesos Updated Branches: refs/heads/master 847060c24 -> ab1cf84e7
Fix protobuf detection on systems with Python 3 as default (part2) MESOS-1774 Review: https://reviews.apache.org/r/25439 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ab1cf84e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ab1cf84e Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/ab1cf84e Branch: refs/heads/master Commit: ab1cf84e7beaa979cabbc2876623c7b30ad5e48b Parents: 847060c Author: Kamil Domanski <[email protected]> Authored: Wed Sep 10 12:43:58 2014 -0500 Committer: Timothy St. Clair <[email protected]> Committed: Wed Sep 10 12:43:58 2014 -0500 ---------------------------------------------------------------------- m4/ac_python_module.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/ab1cf84e/m4/ac_python_module.m4 ---------------------------------------------------------------------- diff --git a/m4/ac_python_module.m4 b/m4/ac_python_module.m4 index 8360b65..ad16bd1 100644 --- a/m4/ac_python_module.m4 +++ b/m4/ac_python_module.m4 @@ -12,7 +12,7 @@ dnl @license AllPermissive AC_DEFUN([AC_PYTHON_MODULE],[ AC_MSG_CHECKING(python2 module: $1) - python -c "import $1" 2>/dev/null + python2 -c "import $1" 2>/dev/null if test $? -eq 0; then AC_MSG_RESULT(yes)
