[Python-checkins] cpython: Drop useenv=true also from the 32-bit build script: It is not necessary and

stefan.krah python-checkins at python.org
Sun Jun 24 22:01:30 CEST 2012


http://hg.python.org/cpython/rev/af1d98b7ca80
changeset:   77741:af1d98b7ca80
user:        Stefan Krah <skrah at bytereef.org>
date:        Sun Jun 24 22:00:44 2012 +0200
summary:
  Drop useenv=true also from the 32-bit build script: It is not necessary and
leads to failures in successive 64-bit/32-bit builds in the same shell window.

files:
  Tools/buildbot/build.bat |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat
--- a/Tools/buildbot/build.bat
+++ b/Tools/buildbot/build.bat
@@ -2,7 +2,7 @@
 cmd /c Tools\buildbot\external.bat
 call "%VS100COMNTOOLS%vsvars32.bat"
 cmd /c Tools\buildbot\clean.bat
-msbuild /p:useenv=true PCbuild\kill_python.vcxproj /p:Configuration=Debug /p:PlatformTarget=x86
+msbuild PCbuild\kill_python.vcxproj /p:Configuration=Debug /p:PlatformTarget=x86
 PCbuild\kill_python_d.exe
-msbuild /p:useenv=true PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=Win32
+msbuild PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=Win32
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list