summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorStefan Seefeld <stefan@seefeld.name>2011-10-17 13:25:36 +0000
committerStefan Seefeld <stefan@seefeld.name>2011-10-17 13:25:36 +0000
commit8d1cf80ea827b4f2c9cd1be5466fffd649b10800 (patch)
treec8a58d6b2330d00d18ead25a57e65d212f345678 /bootstrap.sh
parent76702f976b99974d3641ae0cf7733aff30695bbf (diff)
downloadboost-8d1cf80ea827b4f2c9cd1be5466fffd649b10800.tar.gz
Fix Python3 compatibility.
[SVN r75012]
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 2723f287b9..36e92ffc59 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