##// END OF EJS Templates
automation: correct the path separator in LIBPATH on Windows...
Matt Harbison -
r42804:862f6bdd default
parent child Browse files
Show More
@@ -39,7 +39,7 b' Write-Output "activating Visual Studio 2'
39 39 $Env:PATH = "${root}\VC\Bin;${root}\WinSDK\Bin;$Env:PATH"
40 40 $Env:INCLUDE = "${root}\VC\Include;${root}\WinSDK\Include;$Env:INCLUDE"
41 41 $Env:LIB = "${root}\VC\Lib;${root}\WinSDK\Lib;$Env:LIB"
42 $Env:LIBPATH = "${root}\VC\lib;${root}\WinSDK\Lib:$Env:LIBPATH"
42 $Env:LIBPATH = "${root}\VC\lib;${root}\WinSDK\Lib;$Env:LIBPATH"
43 43 '''.lstrip()
44 44
45 45 HG_PURGE = r'''
General Comments 0
You need to be logged in to leave comments. Login now