Skip to content

Commit 66b07f1

Browse files
committed
Fix licenseck to allow 2012-2013 as the year range
1 parent 7bc9199 commit 66b07f1

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

src/etc/licenseck.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@
88
# option. This file may not be copied, modified, or distributed
99
# except according to those terms.
1010

11+
license0 = """// Copyright 2012-2013 The Rust Project Developers. See the
12+
// COPYRIGHT file at the top-level directory of this distribution and at
13+
// http://rust-lang.org/COPYRIGHT.
14+
//
15+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
16+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
17+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
18+
// option. This file may not be copied, modified, or distributed
19+
// except according to those terms.
20+
"""
21+
1122
license1 = """// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1223
// file at the top-level directory of this distribution and at
1324
// http://rust-lang.org/COPYRIGHT.
@@ -41,7 +52,7 @@
4152
# except according to those terms.
4253
"""
4354

44-
licenses = [license1, license2, license3]
55+
licenses = [license0, license1, license2, license3]
4556

4657
exceptions = [
4758
"rt/rust_android_dummy.cpp", # BSD, chromium

src/libstd/cmp.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
1+
// Copyright 2012-2013 The Rust Project Developers. See the
2+
// COPYRIGHT file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
55
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or

0 commit comments

Comments
 (0)