diff options
author | Steven Knight <knight@baldmt.com> | 2004-03-30 15:14:35 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-03-30 15:14:35 (GMT) |
commit | 1d77f7097830acce939fcaa8315ae659f1ecc7dd (patch) | |
tree | c5639ef50c3c4014b2875ba9d77c4c6301b162b9 /config | |
parent | b46dad1a6665597b93ffd6cee6e89100e1d76c5e (diff) | |
download | SCons-1d77f7097830acce939fcaa8315ae659f1ecc7dd.zip SCons-1d77f7097830acce939fcaa8315ae659f1ecc7dd.tar.gz SCons-1d77f7097830acce939fcaa8315ae659f1ecc7dd.tar.bz2 |
Use python1.5 in default Aegis builds. Fix testing infrastructure for Python 1.5.
Diffstat (limited to 'config')
-rw-r--r-- | config | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -50,7 +50,7 @@ * * Look in aesub(5) for more information about command substitutions. */ -build_command = "python ${Source bootstrap.py} -Y${SUBSTitute : \\ -Y $Search_Path} date='${DAte %Y/%m/%d %H:%M:%S}' developer=${DEVeloper} version=${VERsion} change=${Change}"; +build_command = "python1.5 ${Source bootstrap.py} -Y${SUBSTitute : \\ -Y $Search_Path} date='${DAte %Y/%m/%d %H:%M:%S}' developer=${DEVeloper} version=${VERsion} change=${Change}"; /* * SCons removes its targets before constructing them, which qualifies it @@ -258,9 +258,9 @@ diff_command = * is set appropriately during a baseline test. So we just use the * proper aesub variable to comment out the expanded $spe. */ -test_command = "python ${Source runtest.py Absolute} -p tar-gz -v ${SUBSTitute '\\.[CD][0-9]+$' '' ${VERsion}} -q ${File_Name}"; +test_command = "python1.5 ${Source runtest.py Absolute} -p tar-gz -v ${SUBSTitute '\\.[CD][0-9]+$' '' ${VERsion}} -q ${File_Name}"; -batch_test_command = "python ${Source runtest.py Absolute} -p tar-gz -v ${SUBSTitute '\\.[CD][0-9]+$' '' ${VERsion}} -o ${Output} ${File_Names} ${COMment $spe}"; +batch_test_command = "python1.5 ${Source runtest.py Absolute} -p tar-gz -v ${SUBSTitute '\\.[CD][0-9]+$' '' ${VERsion}} -o ${Output} ${File_Names} ${COMment $spe}"; new_test_filename = "test/CHANGETHIS.py"; |