From 96cb0fbabf44e8e65cdb8cc0d290dd11db138fc8 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 3 Feb 2015 13:12:11 -0800 Subject: [PATCH] Add [no_link] attribute to plugins crate Fixes errors linking to our CEF embedding library. --- ports/cef/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/cef/lib.rs b/ports/cef/lib.rs index 927ee5832b6..33b7d6e8383 100644 --- a/ports/cef/lib.rs +++ b/ports/cef/lib.rs @@ -9,7 +9,7 @@ #[macro_use] extern crate log; -#[plugin] +#[plugin] #[no_link] extern crate "plugins" as servo_plugins; extern crate servo;