diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-06-30 18:46:02 +0200 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-06-30 18:46:02 +0200 |
commit | a14a06fe0e335f282a1b8ab016b5ce4cbbe2dcb8 (patch) | |
tree | 6d6c308463a7753a8dc87db6c119979344c74169 | |
parent | e0afb724020313d1d7ed0edf0662925bb74d995f (diff) | |
download | cpython-git-a14a06fe0e335f282a1b8ab016b5ce4cbbe2dcb8.tar.gz |
Issue #15170: Quote the variable that expands to the current directory.
-rw-r--r-- | Tools/buildbot/build-amd64.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/buildbot/build-amd64.bat b/Tools/buildbot/build-amd64.bat index e215a29136..8713b381e9 100644 --- a/Tools/buildbot/build-amd64.bat +++ b/Tools/buildbot/build-amd64.bat @@ -1,5 +1,5 @@ @rem Used by the buildbot "compile" step. -set HOST_PYTHON=%CD%\PCbuild\amd64\python_d.exe +set HOST_PYTHON="%CD%\PCbuild\amd64\python_d.exe" cmd /c Tools\buildbot\external-amd64.bat call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 cmd /c Tools\buildbot\clean-amd64.bat |