From 78a82b9fd1883930733e13638851742a9fdfdf2a Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 29 Jun 2011 22:35:49 -0700 Subject: [PATCH] Switch rustc's crate metadata to use the link attribute --- src/comp/rustc.rc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc index 75af89639cae..75d30eb3685a 100644 --- a/src/comp/rustc.rc +++ b/src/comp/rustc.rc @@ -1,10 +1,11 @@ // -*- rust -*- -#[name = "rustc"]; -#[vers = "0.1"]; -#[uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf"]; -#[url = "http://rust-lang.org/src/rustc"]; +#[link(name = "rustc", + vers = "0.1", + uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf", + url = "http://rust-lang.org/src/rustc")]; + #[desc = "The Rust compiler"]; #[license = "BSD"];