[Python-checkins] r42984 - python/trunk/Tools/buildbot/build.bat

trent.mick python-checkins at python.org
Mon Mar 13 00:40:58 CET 2006


Author: trent.mick
Date: Mon Mar 13 00:40:58 2006
New Revision: 42984

Modified:
   python/trunk/Tools/buildbot/build.bat
Log:
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.


Modified: python/trunk/Tools/buildbot/build.bat
==============================================================================
--- python/trunk/Tools/buildbot/build.bat	(original)
+++ python/trunk/Tools/buildbot/build.bat	Mon Mar 13 00:40:58 2006
@@ -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


More information about the Python-checkins mailing list