]> granicus.if.org Git - python/commitdiff
Issue #15968: Temporarily revert change to PCbuild/rt.bat
authorZachary Ware <zachary.ware@gmail.com>
Sat, 22 Mar 2014 05:36:25 +0000 (00:36 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Sat, 22 Mar 2014 05:36:25 +0000 (00:36 -0500)
to prevent buildbot failures on test_idle.  This change
should go back in once #20035 is fixed.

PCbuild/rt.bat

index 3db0fb972af30ee54ceb382ca4d42a0b40eaf545..7129e203491fbf8f92d875463b7b40730f83b7da 100644 (file)
@@ -30,13 +30,15 @@ set prefix=.\
 set suffix=
 set qmode=
 set dashO=
+set tcltk=tcltk
 
 :CheckOpts
 if "%1"=="-O" (set dashO=-O)     & shift & goto CheckOpts
 if "%1"=="-q" (set qmode=yes)    & shift & goto CheckOpts
 if "%1"=="-d" (set suffix=_d)    & shift & goto CheckOpts
-if "%1"=="-x64" (set prefix=amd64) & shift & goto CheckOpts
+if "%1"=="-x64" (set prefix=amd64) & (set tcltk=tcltk64) & shift & goto CheckOpts
 
+PATH %PATH%;%~dp0..\..\%tcltk%\bin
 set exe=%prefix%\python%suffix%
 set cmd=%exe% %dashO% -Wd -E -bb ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
 if defined qmode goto Qmode