[Python-checkins] cpython (2.7): Issue #15170: Quote the variable that expands to the current directory.

stefan.krah python-checkins at python.org
Sat Jun 30 18:46:59 CEST 2012


http://hg.python.org/cpython/rev/97445ca895d5
changeset:   77884:97445ca895d5
branch:      2.7
parent:      77877:6df0b4ed8617
user:        Stefan Krah <skrah at bytereef.org>
date:        Sat Jun 30 18:46:02 2012 +0200
summary:
  Issue #15170: Quote the variable that expands to the current directory.

files:
  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
--- 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list