From bfac7b57161168b8b54ea159bbf2c88794098c1c Mon Sep 17 00:00:00 2001 From: Fujii Hironori Date: Fri, 16 Feb 2018 21:25:12 +0900 Subject: [PATCH] [vcpkg] http_proxy and https_proxy should be lowercase (#2815) Pacman of Msys understands only lowercase environment variables http_proxy and https_proxy. --- toolsrc/src/vcpkg/base/system.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolsrc/src/vcpkg/base/system.cpp b/toolsrc/src/vcpkg/base/system.cpp index 84721bf6e..f71fd8445 100644 --- a/toolsrc/src/vcpkg/base/system.cpp +++ b/toolsrc/src/vcpkg/base/system.cpp @@ -175,8 +175,8 @@ namespace vcpkg::System L"USERPROFILE", L"windir", // Enables proxy information to be passed to Curl, the underlying download library in cmake.exe - L"HTTP_PROXY", - L"HTTPS_PROXY", + L"http_proxy", + L"https_proxy", // Enables find_package(CUDA) in CMake L"CUDA_PATH", // Environmental variable generated automatically by CUDA after installation