diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-17 23:44:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-17 23:44:32 (GMT) |
commit | 1d64fb34616505e0dcf494dd1c765b656327916c (patch) | |
tree | 67389b240609d1a4d3902d403717eaddd5b62a3d | |
parent | 11a70c79b90d106bfe2b4db7039c4fa12f1fc145 (diff) | |
download | cpython-1d64fb34616505e0dcf494dd1c765b656327916c.zip cpython-1d64fb34616505e0dcf494dd1c765b656327916c.tar.gz cpython-1d64fb34616505e0dcf494dd1c765b656327916c.tar.bz2 |
Temporarily add the Tcl/Tk bin directory to PATH, so that test_tcl can
actually run. When it fails, it pops up a dialog box, and the test run
hangs waiting for you to click OK -- that sucks too much to bear.
-rwxr-xr-x | PCbuild/rt.bat | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat index f99c7df..8c6f092 100755 --- a/PCbuild/rt.bat +++ b/PCbuild/rt.bat @@ -18,6 +18,8 @@ @set _exe=python @set _qmode=no @set _dashO= +@set _oldpath=%PATH% +@PATH %PATH%;..\..\tcl84\bin @goto CheckOpts :Again @shift @@ -39,3 +41,5 @@ @set _exe= @set _qmode= @set _dashO= +@PATH %_oldpath% +@set _oldpath= |