From 66b07f1e5dd5767ae6aa238a00490f1493c5d443 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Tue, 29 Jan 2013 13:48:04 -0800 Subject: [PATCH] Fix licenseck to allow 2012-2013 as the year range --- src/etc/licenseck.py | 13 ++++++++++++- 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 or the MIT license +// , 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