diff options
author | Steve Dower <steve.dower@python.org> | 2022-07-17 14:20:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 14:20:24 (GMT) |
commit | 5c19ddab65f91d190ec94c494e95c5d551a45efc (patch) | |
tree | 4b244f501add990dcb5c43eaf30a4fa794b1c1e5 /PCbuild/pyproject.props | |
parent | ec4745b5f2c2a460f12c97243c5b7d875f24b0c8 (diff) | |
download | cpython-5c19ddab65f91d190ec94c494e95c5d551a45efc.zip cpython-5c19ddab65f91d190ec94c494e95c5d551a45efc.tar.gz cpython-5c19ddab65f91d190ec94c494e95c5d551a45efc.tar.bz2 |
gh-92348: Add quotes to support building on Windows with spaces in directory name (GH-94925)
Diffstat (limited to 'PCbuild/pyproject.props')
-rw-r--r-- | PCbuild/pyproject.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index df3efc6..e398b33 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -229,7 +229,7 @@ public override bool Execute() { </Target> <Target Name="FindPythonForBuild" Condition="$(PythonForBuild) == ''"> - <Exec Command="$(MSBuildThisFileDirectory)\find_python.bat -q" + <Exec Command=""$(MSBuildThisFileDirectory)\find_python.bat" -q" EchoOff="true" ConsoleToMsBuild="true"> <Output TaskParameter="ConsoleOutput" ItemName="_CmdExeLines" /> |