prepend python to path when building usvfs, udis requires it

install certifi, prebuilt python fails with ssl errors when downloading
This commit is contained in:
isanae
2020-05-26 13:36:36 -04:00
parent ff64693a18
commit 0dc8d2c7ae
8 changed files with 110 additions and 29 deletions
+7
View File
@@ -244,6 +244,13 @@ void python::install_pip()
.arg("-m pip")
.arg("install")
.arg("--upgrade pip")));
// ssl errors while downloading through python without certifi
run_tool(process_runner(process()
.binary(python_exe())
.arg("pip")
.arg("install")
.arg("certifi")));
}
msbuild python::create_msbuild_tool(msbuild::ops o)