From: Brian Anderson Date: Mon, 9 Jan 2012 00:21:43 +0000 (-0800) Subject: Declare MIT license in crate attributes, not BSD X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=c5564c9bae7f6f2394c4438ee5adebd3cabe17e5;p=rust.git Declare MIT license in crate attributes, not BSD The Rust License is actually the MIT license, not BSD --- diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc index 2738f3e4b82..d770243f352 100644 --- a/src/comp/rustc.rc +++ b/src/comp/rustc.rc @@ -6,7 +6,7 @@ url = "http://rust-lang.org/src/rustc")]; #[desc = "The Rust compiler"]; -#[license = "BSD"]; +#[license = "MIT"]; #[crate_type = "bin"]; use std (name = "std", diff --git a/src/libcore/core.rc b/src/libcore/core.rc index d1732352d96..4035b6e1b44 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -4,7 +4,7 @@ url = "http://rust-lang.org/src/core")]; #[comment = "The Rust core library"]; -#[license = "BSD"]; +#[license = "MIT"]; #[crate_type = "lib"]; export box, char, float, bessel, f32, f64, int, str, ptr; diff --git a/src/libstd/std.rc b/src/libstd/std.rc index 8acb1ac9ef9..9599febc398 100644 --- a/src/libstd/std.rc +++ b/src/libstd/std.rc @@ -4,7 +4,7 @@ url = "http://rust-lang.org/src/std")]; #[comment = "The Rust standard library"]; -#[license = "BSD"]; +#[license = "MIT"]; #[crate_type = "lib"]; export comm, fs, io, net, run, uv;