diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-29 13:48:04 -0800 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-29 13:48:40 -0800 |
| commit | 66b07f1e5dd5767ae6aa238a00490f1493c5d443 (patch) | |
| tree | 2353dab3329d429e4a365a6e1c77c17e43bbc5c0 /src | |
| parent | 7bc919909aedbc5fafa9a227adbdfbb9bcb83cbb (diff) | |
| download | rust-66b07f1e5dd5767ae6aa238a00490f1493c5d443.tar.gz rust-66b07f1e5dd5767ae6aa238a00490f1493c5d443.zip | |
Fix licenseck to allow 2012-2013 as the year range
Diffstat (limited to 'src')
| -rw-r--r-- | src/etc/licenseck.py | 13 | ||||
| -rw-r--r-- | src/libstd/cmp.rs | 4 |
2 files changed, 14 insertions, 3 deletions
diff --git a/src/etc/licenseck.py b/src/etc/licenseck.py index 14d00e8c2cb..5e53eef7ef2 100644 --- a/src/etc/licenseck.py +++ b/src/etc/licenseck.py @@ -8,6 +8,17 @@ # option. This file may not be copied, modified, or distributed # except according to those terms. +license0 = """// Copyright 2012-2013 The Rust Project Developers. See the +// COPYRIGHT file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. +""" + license1 = """// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. @@ -41,7 +52,7 @@ license3 = """# Copyright 2013 The Rust Project Developers. See the COPYRIGHT # except according to those terms. """ -licenses = [license1, license2, license3] +licenses = [license0, license1, license2, license3] exceptions = [ "rt/rust_android_dummy.cpp", # BSD, chromium diff --git a/src/libstd/cmp.rs b/src/libstd/cmp.rs index ef893b067be..b5e863c739e 100644 --- a/src/libstd/cmp.rs +++ b/src/libstd/cmp.rs @@ -1,5 +1,5 @@ -// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at +// Copyright 2012-2013 The Rust Project Developers. See the +// COPYRIGHT file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
