From 9104048378e6a310db14a53f494f1eff74a22377 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 13 Mar 2006 04:17:40 +0000 Subject: [PATCH] Merge rev 42984 from trunk. Adding the /useenv means that one's PATH actually gets through. This is important for the _ssl.vproj build. It calls build_ssl.py which tries to find a Perl to use. Without "/useenv" Visual Studio is getting a PATH from somewhere else (presumably from its internal environment configuration). The result is that build_ssl.py fallsback to its "well-known" locations for a Perl install. --- Tools/buildbot/build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index aa019a9c7806..00bbdbb72b51 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -1,3 +1,3 @@ @rem Used by the buildbot "compile" step. call "%VS71COMNTOOLS%vsvars32.bat" -devenv.com /build Debug PCbuild\pcbuild.sln +devenv.com /useenv /build Debug PCbuild\pcbuild.sln -- 2.47.3