diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-09-19 09:10:40 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-09-19 09:10:40 (GMT) |
commit | 0dd078a7369d9bf94b0ba18785321dd4887e3a93 (patch) | |
tree | 44e089984387a6be359b73cf342ef0b9d2685d12 /PC | |
parent | 33f028b1844ef0568b80e50126f778b3f5b4bba2 (diff) | |
download | cpython-0dd078a7369d9bf94b0ba18785321dd4887e3a93.zip cpython-0dd078a7369d9bf94b0ba18785321dd4887e3a93.tar.gz cpython-0dd078a7369d9bf94b0ba18785321dd4887e3a93.tar.bz2 |
Merged revisions 84857,84870,84875 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84857 | hirokazu.yamamoto | 2010-09-17 17:53:31 +0900 | 1 line
Let's see if tcl/tk test runs on windows buildbot with this fix.
........
r84870 | hirokazu.yamamoto | 2010-09-18 09:31:44 +0900 | 3 lines
regrtest.py now runs python in build/test_python_xxx. (deeper than here)
So failed to load tcl/tk dll because $(dist)/tcltk/bin was set to PATH as
relative path. (Windows)
........
r84875 | hirokazu.yamamoto | 2010-09-18 13:02:52 +0900 | 1 line
Applied r84870 to older compilers.
........
Diffstat (limited to 'PC')
-rwxr-xr-x | PC/VS7.1/rt.bat | 2 | ||||
-rw-r--r-- | PC/VS8.0/rt.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/PC/VS7.1/rt.bat b/PC/VS7.1/rt.bat index 29801d2..f05cf23 100755 --- a/PC/VS7.1/rt.bat +++ b/PC/VS7.1/rt.bat @@ -27,7 +27,7 @@ setlocal set exe=python set qmode= set dashO= -PATH %PATH%;..\..\..\tcltk\bin +PATH %PATH%;%~dp0..\..\..\tcltk\bin :CheckOpts if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts diff --git a/PC/VS8.0/rt.bat b/PC/VS8.0/rt.bat index 90fd794..2e0a681 100644 --- a/PC/VS8.0/rt.bat +++ b/PC/VS8.0/rt.bat @@ -27,7 +27,7 @@ setlocal set exe=python
set qmode=
set dashO=
-PATH %PATH%;..\..\..\tcltk\bin
+PATH %PATH%;%~dp0..\..\..\tcltk\bin
:CheckOpts
if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
|