diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-31 14:59:26 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-31 14:59:26 (GMT) |
commit | 656dc2adeeb3eded0c640002f86f2877c8c7e3fc (patch) | |
tree | e51d669ad3d07e028f713c23151f0f8085eae42b /PC | |
parent | 915d5d96d826c13cd6a89341fc1a2ce12811aea2 (diff) | |
download | cpython-656dc2adeeb3eded0c640002f86f2877c8c7e3fc.zip cpython-656dc2adeeb3eded0c640002f86f2877c8c7e3fc.tar.gz cpython-656dc2adeeb3eded0c640002f86f2877c8c7e3fc.tar.bz2 |
Fix paths for build bot
Diffstat (limited to 'PC')
-rw-r--r-- | PC/VS7.1/build_ssl.py | 2 | ||||
-rwxr-xr-x | PC/VS7.1/rt.bat | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/PC/VS7.1/build_ssl.py b/PC/VS7.1/build_ssl.py index 96809b3..2e9f4e3 100644 --- a/PC/VS7.1/build_ssl.py +++ b/PC/VS7.1/build_ssl.py @@ -131,7 +131,7 @@ def main(): print "Found a working perl at '%s'" % (perl,) sys.stdout.flush() # Look for SSL 2 levels up from pcbuild - ie, same place zlib etc all live. - ssl_dir = find_best_ssl_dir(("..\\..",)) + ssl_dir = find_best_ssl_dir(("..\\..\\..",)) if ssl_dir is None: sys.exit(1) diff --git a/PC/VS7.1/rt.bat b/PC/VS7.1/rt.bat index 8e386c5..29801d2 100755 --- a/PC/VS7.1/rt.bat +++ b/PC/VS7.1/rt.bat @@ -10,11 +10,11 @@ rem All leading instances of these switches are shifted off, and rem whatever remains is passed to regrtest.py. For example, rem rt -O -d -x test_thread rem runs -rem python_d -O ../lib/test/regrtest.py -x test_thread +rem python_d -O ../../lib/test/regrtest.py -x test_thread rem twice, and rem rt -q -g test_binascii rem runs -rem python_d ../lib/test/regrtest.py -g test_binascii +rem python_d ../../lib/test/regrtest.py -g test_binascii rem to generate the expected-output file for binascii quickly. rem rem Confusing: if you want to pass a comma-separated list, like @@ -27,14 +27,14 @@ setlocal set exe=python set qmode= set dashO= -PATH %PATH%;..\..\tcltk\bin +PATH %PATH%;..\..\..\tcltk\bin :CheckOpts if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts if "%1"=="-d" (set exe=python_d) & shift & goto CheckOpts -set cmd=%exe% %dashO% -E -tt ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9 +set cmd=%exe% %dashO% -E -tt ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9 if defined qmode goto Qmode echo Deleting .pyc/.pyo files ... |