]> git.lizzy.rs Git - rust.git/commitdiff
Fix licenseck to allow 2012-2013 as the year range
authorTim Chevalier <chevalier@alum.wellesley.edu>
Tue, 29 Jan 2013 21:48:04 +0000 (13:48 -0800)
committerTim Chevalier <chevalier@alum.wellesley.edu>
Tue, 29 Jan 2013 21:48:40 +0000 (13:48 -0800)
src/etc/licenseck.py
src/libstd/cmp.rs

index 14d00e8c2cbb90a348ebfcc409ab33e52ba4373c..5e53eef7ef2b899d80056c670e644fd5bc904fd7 100644 (file)
@@ -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
index ef893b067be89785fa8c46ce7650ee880aa0e2bf..b5e863c739e8e6a4b1d9ea60a6808c29b3d01bc7 100644 (file)
@@ -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