aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2017-12-30 18:34:46 -0600
committerGitHub <noreply@github.com>2017-12-30 18:34:46 -0600
commit4be7420d7c2de105e48e494d13a7a074bb3f04c9 (patch)
treec84fa6d4fec8bf189a33abb8c945c106c622aa90 /PCbuild
parentbpo-18035: telnetlib: select.error doesn't have an errno attribute (#5044) (diff)
downloadcpython-4be7420d7c2de105e48e494d13a7a074bb3f04c9.tar.gz
cpython-4be7420d7c2de105e48e494d13a7a074bb3f04c9.tar.bz2
cpython-4be7420d7c2de105e48e494d13a7a074bb3f04c9.zip
[2.7] Add missing backslashes in PCbuild bat files (GH-5056) (GH-5058)
(cherry picked from commit fe90efdc07ec70fd4ff28eac179448a41379cff1)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/get_externals.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat
index a28648a1c4a..39041f59f3e 100644
--- a/PCbuild/get_externals.bat
+++ b/PCbuild/get_externals.bat
@@ -30,7 +30,7 @@ if "%DO_FETCH%"=="false" goto end
:fetch
if "%ORG%"=="" (set ORG=python)
-call "%PCBUILD%find_python.bat" "%PYTHON%"
+call "%PCBUILD%\find_python.bat" "%PYTHON%"
git 2>&1 > nul
if ERRORLEVEL 9009 (
@@ -61,7 +61,7 @@ for %%e in (%libraries%) do (
git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
) else (
echo.Fetching %%e...
- %PYTHON% "%PCBUILD%get_external.py" -O %ORG% %%e
+ %PYTHON% "%PCBUILD%\get_external.py" -O %ORG% %%e
)
)
@@ -79,7 +79,7 @@ for %%b in (%binaries%) do (
git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
) else (
echo.Fetching %%b...
- %PYTHON% "%PCBUILD%get_external.py" -b -O %ORG% %%b
+ %PYTHON% "%PCBUILD%\get_external.py" -b -O %ORG% %%b
)
)