Skip to content

Commit 6213db5

Browse files
committed
---
yaml --- r: 41303 b: refs/heads/snap-stage3 c: 66b07f1 h: refs/heads/master i: 41301: 2ec577d 41299: 9a906e2 41295: e59135d v: v3
1 parent 87aa58c commit 6213db5

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 7bc919909aedbc5fafa9a227adbdfbb9bcb83cbb
4+
refs/heads/snap-stage3: 66b07f1e5dd5767ae6aa238a00490f1493c5d443
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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

branches/snap-stage3/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)