diff options
author | Steven Knight <knight@baldmt.com> | 2010-06-15 21:04:47 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-06-15 21:04:47 (GMT) |
commit | fabff06e1ff1863ded70136f0797814a676a86d4 (patch) | |
tree | c13f47a573efee1038ead7d21149454a70b0dc52 /bin | |
parent | 1e73529341eb9559a7ded9e2bb327182f7748305 (diff) | |
download | SCons-fabff06e1ff1863ded70136f0797814a676a86d4.zip SCons-fabff06e1ff1863ded70136f0797814a676a86d4.tar.gz SCons-fabff06e1ff1863ded70136f0797814a676a86d4.tar.bz2 |
Issue 2390: Support appending to $*FLAGS values (CLVar instances) in a
copied construction environment without also affecting the value in
the original construction environment. (Matt Hughes)
Diffstat (limited to 'bin')
-rw-r--r-- | bin/install_python.py | 17 | ||||
-rw-r--r-- | bin/scons_dev_master.py | 2 |
2 files changed, 15 insertions, 4 deletions
diff --git a/bin/install_python.py b/bin/install_python.py index 86807af..0cc805b 100644 --- a/bin/install_python.py +++ b/bin/install_python.py @@ -15,10 +15,19 @@ import sys from Command import CommandRunner, Usage all_versions = [ - '2.3.7', - '2.4.5', - #'2.5.2', - '2.6', + #'1.5.2', # no longer available at python.org + #'2.0.1', # no longer supported by SCons + #'2.1.3', # no longer supported by SCons + '2.2', + #'2.2.3', + '2.3', + #'2.3.7', + #'2.4', + '2.4.6', + '2.5.5', + '2.6.5', + '3.0.1', + '3.1.2', ] def main(argv=None): diff --git a/bin/scons_dev_master.py b/bin/scons_dev_master.py index 4fa810d..f7621c2 100644 --- a/bin/scons_dev_master.py +++ b/bin/scons_dev_master.py @@ -56,6 +56,8 @@ DOCUMENTATION_PACKAGES = [ 'sun-java6-doc', 'swig-doc', 'texlive-doc', + # Needed for aeguill.sty when generating API docs: + 'texlive-lang-french', ] TESTING_PACKAGES = [ |