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 /etc/SConscript | |
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 'etc/SConscript')
-rw-r--r-- | etc/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/SConscript b/etc/SConscript index 4309ddb..e68663d 100644 --- a/etc/SConscript +++ b/etc/SConscript @@ -31,6 +31,7 @@ Import('env') files = [ 'TestCmd.py', + 'TestCommon.py', 'TestSCons.py', 'unittest.py', ] @@ -38,7 +39,6 @@ files = [ def copy(target, source, env): t = str(target[0]) s = str(source[0]) - print "copy() < %s > %s" % (s, t) open(t, 'wb').write(open(s, 'rb').read()) for file in files: |