diff options
author | antektek <45912913+antektek@users.noreply.github.com> | 2019-01-10 00:19:29 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-01-10 00:19:29 (GMT) |
commit | 6aedfa6b9ac324587f64133c23757a66a8f355bb (patch) | |
tree | 71cea9044622898712b4039af962a95d1f8780d8 /PCbuild/find_python.bat | |
parent | a306bdd39f5d4a8a615487e7840355e923706811 (diff) | |
download | cpython-6aedfa6b9ac324587f64133c23757a66a8f355bb.zip cpython-6aedfa6b9ac324587f64133c23757a66a8f355bb.tar.gz cpython-6aedfa6b9ac324587f64133c23757a66a8f355bb.tar.bz2 |
bpo-34855: Fix EXTERNALS_DIR build variable for Windows (GH-11177)
Diffstat (limited to 'PCbuild/find_python.bat')
-rw-r--r-- | PCbuild/find_python.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/find_python.bat b/PCbuild/find_python.bat index d0778dd..d5c787f 100644 --- a/PCbuild/find_python.bat +++ b/PCbuild/find_python.bat @@ -24,7 +24,7 @@ :begin_search @set PYTHON= -@set _Py_EXTERNALS_DIR=%EXTERNAL_DIR% +@set _Py_EXTERNALS_DIR=%EXTERNALS_DIR% @if "%_Py_EXTERNALS_DIR%"=="" (set _Py_EXTERNALS_DIR=%~dp0\..\externals) @rem If we have Python in externals, use that one |