# HG changeset patch # User Matt Harbison # Date 1563082302 14400 # Node ID 862f6bddacceebb771024ee9b30a3d581aac7fc1 # Parent 3bc400ccbf996fac16ef2b608f6c47552eaf6c56 automation: correct the path separator in LIBPATH on Windows I haven't tried building the x86 installer, but happened to notice this when working on the thg installer. Experimenting in PowerShell seems to show that LIBPATH was expanded at the end, but with ':' between, it effectively corrupted `${root}\WinSDK\Lib` and the first path in LIBPATH. Differential Revision: https://phab.mercurial-scm.org/D6642 diff -r 3bc400ccbf99 -r 862f6bddacce contrib/automation/hgautomation/windows.py --- a/contrib/automation/hgautomation/windows.py Sun Jun 30 01:07:14 2019 +0530 +++ b/contrib/automation/hgautomation/windows.py Sun Jul 14 01:31:42 2019 -0400 @@ -39,7 +39,7 @@ $Env:PATH = "${root}\VC\Bin;${root}\WinSDK\Bin;$Env:PATH" $Env:INCLUDE = "${root}\VC\Include;${root}\WinSDK\Include;$Env:INCLUDE" $Env:LIB = "${root}\VC\Lib;${root}\WinSDK\Lib;$Env:LIB" -$Env:LIBPATH = "${root}\VC\lib;${root}\WinSDK\Lib:$Env:LIBPATH" +$Env:LIBPATH = "${root}\VC\lib;${root}\WinSDK\Lib;$Env:LIBPATH" '''.lstrip() HG_PURGE = r'''