From 10cc07e1372ebd4790ecfcc964fcc7714614be41 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 19 Nov 2014 12:12:04 -0800 Subject: [PATCH] cef: Don't link against librustc in the final build artifact --- ports/cef/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/cef/lib.rs b/ports/cef/lib.rs index ae689e33ee1..cd96f974d6c 100644 --- a/ports/cef/lib.rs +++ b/ports/cef/lib.rs @@ -10,10 +10,11 @@ #![feature(phase)] #[phase(plugin, link)] extern crate log; +#[phase(plugin)] +extern crate "plugins" as servo_plugins; extern crate rustuv; -extern crate "plugins" as servo_plugins; extern crate servo; extern crate azure;