From ffe4de79ac747fd14563faec8a1e846be351dc69 Mon Sep 17 00:00:00 2001 From: Stefan Seefeld Date: Mon, 17 Oct 2011 13:25:36 +0000 Subject: [PATCH] Fix Python3 compatibility. [SVN r75012] --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 98cf88bc1c7..c2e7c6e29f8 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -277,7 +277,7 @@ if test "x$flag_no_python" = x; then if test "x$PYTHON_ROOT" = x; then echo -n "Detecting Python root... " - PYTHON_ROOT=`$PYTHON -c "import sys; print sys.prefix"` + PYTHON_ROOT=`$PYTHON -c "import sys; print(sys.prefix)"` echo $PYTHON_ROOT fi fi