From 1a502849292953514d3094f25ba0f2a3327addcc Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Thu, 23 Feb 2017 15:47:00 -0800 Subject: Use System::set_environmental_variable() --- toolsrc/src/commands_build.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toolsrc/src') diff --git a/toolsrc/src/commands_build.cpp b/toolsrc/src/commands_build.cpp index 2159cec2c..98f0cbbb0 100644 --- a/toolsrc/src/commands_build.cpp +++ b/toolsrc/src/commands_build.cpp @@ -38,8 +38,8 @@ namespace vcpkg::Commands::Build } // If these environment variables are set while running the VS2017 developer prompt, it will not correctly initialize the build environment. - _wputenv_s(L"VSINSTALLDIR", L""); - _wputenv_s(L"DevEnvDir", L""); + System::set_environmental_variable(L"VSINSTALLDIR", L""); + System::set_environmental_variable(L"DevEnvDir", L""); const fs::path ports_cmake_script_path = paths.ports_cmake; const Environment::vcvarsall_and_platform_toolset vcvarsall_bat = Environment::get_vcvarsall_bat(paths); -- cgit v1.2.3