From 5a951d3a2ae3245d2d54384f41423a611831e60b Mon Sep 17 00:00:00 2001 From: Tanzinul Islam Date: Mon, 3 Jun 2019 08:22:31 +0100 Subject: Allow spaces in $PYTHON_ROOT This may be the case with, for example, `C:\Program Files\Python37` on MSYS2 on Windows (with `MSYS2_PATH_TYPE=inherit` in the .ini file). --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh index 01f71479e3..464a45caae 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -360,7 +360,7 @@ if test "x$flag_no_python" = x; then import python ; if ! [ python.configured ] { - using python : $PYTHON_VERSION : $PYTHON_ROOT ; + using python : $PYTHON_VERSION : "$PYTHON_ROOT" ; } EOF fi -- cgit v1.2.1