Skip to content

Commit

Permalink
Fix license attribute on crates
Browse files Browse the repository at this point in the history
  • Loading branch information
sevrak committed Feb 28, 2013
1 parent b171d0e commit 833ad60
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/libcore/core.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand Down Expand Up @@ -41,7 +41,7 @@ Implicitly, all crates behave as if they included the following prologue:
url = "https://github.com/mozilla/rust/tree/master/src/libcore")];

#[comment = "The Rust core library"];
#[license = "MIT"];
#[license = "MIT/APL2"];
#[crate_type = "lib"];


Expand Down
4 changes: 2 additions & 2 deletions src/libfuzzer/fuzzer.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -15,7 +15,7 @@
url = "https://github.com/mozilla/rust/tree/master/src/libfuzzer")];

#[comment = "The Rust fuzzer library"];
#[license = "MIT"];
#[license = "MIT/APL2"];
#[crate_type = "lib"];
#[no_core];

Expand Down
1 change: 1 addition & 0 deletions src/librust/rust.rc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
uuid = "4a24da33-5cc8-4037-9352-2cbe9bd9d27c",
url = "https://github.com/mozilla/rust/tree/master/src/rust")];

#[license = "MIT/APL2"];
#[crate_type = "lib"];

extern mod core(vers = "0.6");
Expand Down
4 changes: 2 additions & 2 deletions src/librustc/rustc.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -15,7 +15,7 @@
url = "https://github.com/mozilla/rust/tree/master/src/rustc")];

#[comment = "The Rust compiler"];
#[license = "MIT"];
#[license = "MIT/APL2"];
#[crate_type = "lib"];

#[legacy_modes];
Expand Down
4 changes: 2 additions & 2 deletions src/librustdoc/rustdoc.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -16,7 +16,7 @@
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];

#[comment = "The Rust documentation generator"];
#[license = "MIT"];
#[license = "MIT/APL2"];
#[crate_type = "lib"];

#[no_core];
Expand Down
3 changes: 2 additions & 1 deletion src/librusti/rusti.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -15,6 +15,7 @@
uuid = "7fb5bf52-7d45-4fee-8325-5ad3311149fc",
url = "https://github.com/mozilla/rust/tree/master/src/rusti")];

#[license = "MIT/APL2"];
#[crate_type = "lib"];

#[no_core];
Expand Down
3 changes: 2 additions & 1 deletion src/librustpkg/rustpkg.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -15,6 +15,7 @@
uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf",
url = "https://github.com/mozilla/rust/tree/master/src/librustpkg")];

#[license = "MIT/APL2"];
#[crate_type = "lib"];
#[no_core];
#[allow(vecs_implicitly_copyable,
Expand Down
4 changes: 2 additions & 2 deletions src/libstd/std.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -23,7 +23,7 @@ not required in or otherwise suitable for the core library.
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];

#[comment = "The Rust standard library"];
#[license = "MIT"];
#[license = "MIT/APL2"];
#[crate_type = "lib"];

#[allow(vecs_implicitly_copyable)];
Expand Down
3 changes: 2 additions & 1 deletion src/libsyntax/syntax.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
//
Expand All @@ -14,6 +14,7 @@



#[license = "MIT/APL2"];
#[crate_type = "lib"];

#[legacy_modes];
Expand Down

0 comments on commit 833ad60

Please sign in to comment.