]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34855: Fix EXTERNALS_DIR build variable for Windows (GH-11177)
authorantektek <45912913+antektek@users.noreply.github.com>
Thu, 10 Jan 2019 00:19:29 +0000 (01:19 +0100)
committerSteve Dower <steve.dower@microsoft.com>
Thu, 10 Jan 2019 00:19:29 +0000 (11:19 +1100)
.azure-pipelines/windows-appx-test.yml
.azure-pipelines/windows-steps.yml
PCbuild/find_python.bat

index 5f3fe6c9457890bd9eac84ac8bb0b9ae069a45a8..cad752b0a1e7d86467409d0d3557174e6e470994 100644 (file)
@@ -36,7 +36,7 @@ jobs:
       Write-Host '##vso[task.setvariable variable=Py_IntDir]$(Build.BinariesDirectory)\obj'
       # UNDONE: Do not build to a different directory because of broken tests
       Write-Host '##vso[task.setvariable variable=Py_OutDir]$(Build.SourcesDirectory)\PCbuild'
-      Write-Host '##vso[task.setvariable variable=EXTERNAL_DIR]$(Build.BinariesDirectory)\externals'
+      Write-Host '##vso[task.setvariable variable=EXTERNALS_DIR]$(Build.BinariesDirectory)\externals'
     displayName: Update build locations
 
   - script: PCbuild\build.bat -e $(buildOpt)
index cba00158ad131dd020b288ac4dbb81129fee7cf7..3651ae03bc1dfa9d4be3cc2303962d2664b0bc44 100644 (file)
@@ -8,7 +8,7 @@ steps:
     Write-Host '##vso[task.setvariable variable=Py_IntDir]$(Build.BinariesDirectory)\obj'
     # UNDONE: Do not build to a different directory because of broken tests
     Write-Host '##vso[task.setvariable variable=Py_OutDir]$(Build.SourcesDirectory)\PCbuild'
-    Write-Host '##vso[task.setvariable variable=EXTERNAL_DIR]$(Build.BinariesDirectory)\externals'
+    Write-Host '##vso[task.setvariable variable=EXTERNALS_DIR]$(Build.BinariesDirectory)\externals'
   displayName: Update build locations
 
 - script: PCbuild\build.bat -e $(buildOpt)
index d0778ddd734740ef5343482ab3946928fd0e47db..d5c787fd77aa4249f27a6e664268078f933ebb8c 100644 (file)
@@ -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