Skip to content

Commit c355f17

Browse files
committed
Merge remote branch 'sevrak/issue-5164' into incoming
2 parents 1d34a55 + 833ad60 commit c355f17

File tree

9 files changed

+17
-13
lines changed

9 files changed

+17
-13
lines changed

src/libcore/core.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -41,7 +41,7 @@ Implicitly, all crates behave as if they included the following prologue:
4141
url = "https://github.com/mozilla/rust/tree/master/src/libcore")];
4242

4343
#[comment = "The Rust core library"];
44-
#[license = "MIT"];
44+
#[license = "MIT/APL2"];
4545
#[crate_type = "lib"];
4646

4747

src/libfuzzer/fuzzer.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -15,7 +15,7 @@
1515
url = "https://github.com/mozilla/rust/tree/master/src/libfuzzer")];
1616

1717
#[comment = "The Rust fuzzer library"];
18-
#[license = "MIT"];
18+
#[license = "MIT/APL2"];
1919
#[crate_type = "lib"];
2020
#[no_core];
2121

src/librust/rust.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
uuid = "4a24da33-5cc8-4037-9352-2cbe9bd9d27c",
1818
url = "https://github.com/mozilla/rust/tree/master/src/rust")];
1919

20+
#[license = "MIT/APL2"];
2021
#[crate_type = "lib"];
2122

2223
extern mod core(vers = "0.6");

src/librustc/rustc.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -15,7 +15,7 @@
1515
url = "https://github.com/mozilla/rust/tree/master/src/rustc")];
1616

1717
#[comment = "The Rust compiler"];
18-
#[license = "MIT"];
18+
#[license = "MIT/APL2"];
1919
#[crate_type = "lib"];
2020

2121
#[legacy_modes];

src/librustdoc/rustdoc.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -16,7 +16,7 @@
1616
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
1717

1818
#[comment = "The Rust documentation generator"];
19-
#[license = "MIT"];
19+
#[license = "MIT/APL2"];
2020
#[crate_type = "lib"];
2121

2222
#[no_core];

src/librusti/rusti.rc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -15,6 +15,7 @@
1515
uuid = "7fb5bf52-7d45-4fee-8325-5ad3311149fc",
1616
url = "https://github.com/mozilla/rust/tree/master/src/rusti")];
1717

18+
#[license = "MIT/APL2"];
1819
#[crate_type = "lib"];
1920

2021
#[no_core];

src/librustpkg/rustpkg.rc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -15,6 +15,7 @@
1515
uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf",
1616
url = "https://github.com/mozilla/rust/tree/master/src/librustpkg")];
1717

18+
#[license = "MIT/APL2"];
1819
#[crate_type = "lib"];
1920
#[no_core];
2021
#[allow(vecs_implicitly_copyable,

src/libstd/std.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -23,7 +23,7 @@ not required in or otherwise suitable for the core library.
2323
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
2424

2525
#[comment = "The Rust standard library"];
26-
#[license = "MIT"];
26+
#[license = "MIT/APL2"];
2727
#[crate_type = "lib"];
2828

2929
#[allow(vecs_implicitly_copyable)];

src/libsyntax/syntax.rc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -14,6 +14,7 @@
1414

1515

1616

17+
#[license = "MIT/APL2"];
1718
#[crate_type = "lib"];
1819

1920
#[legacy_modes];

0 commit comments

Comments
 (0)