diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 22:17:36 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 22:17:36 +0000 |
commit | 7ef735ae2811757a4883f1664fd5f8ab9773b477 (patch) | |
tree | ee914997913fcda6b8dedd29089245056c18fedf /third_party/scons/scons.py | |
parent | 08cfdbb67a38a68eeb2e6e5a6a32e84148aea39d (diff) | |
download | chromium_src-7ef735ae2811757a4883f1664fd5f8ab9773b477.zip chromium_src-7ef735ae2811757a4883f1664fd5f8ab9773b477.tar.gz chromium_src-7ef735ae2811757a4883f1664fd5f8ab9773b477.tar.bz2 |
Update to SCons 1.2.0.
Review URL: http://codereview.chromium.org/17024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7511 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/scons/scons.py')
-rwxr-xr-x | third_party/scons/scons.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/third_party/scons/scons.py b/third_party/scons/scons.py index ef1198d..88276a4 100755 --- a/third_party/scons/scons.py +++ b/third_party/scons/scons.py @@ -24,15 +24,15 @@ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # -__revision__ = "src/script/scons.py 3603 2008/10/10 05:46:45 scons" +__revision__ = "src/script/scons.py 3842 2008/12/20 22:59:52 scons" -__version__ = "1.1.0" +__version__ = "1.2.0" -__build__ = "r3603" +__build__ = "r3842" __buildsys__ = "scons-dev" -__date__ = "2008/10/10 05:46:45" +__date__ = "2008/12/20 22:59:52" __developer__ = "scons" @@ -160,4 +160,6 @@ sys.path = libs + sys.path if __name__ == "__main__": import SCons.Script + # this does all the work, and calls sys.exit + # with the proper exit status when done. SCons.Script.main() |