From 107c2d4c62096355496c7130bf132a3a1f008f78 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 11 Jun 2014 21:43:47 -0700 Subject: [PATCH] phase(syntax) -> phase(plugin) --- base64/base64.rs | 2 +- cp/cp.rs | 2 +- hostid/hostid.rs | 2 +- kill/kill.rs | 2 +- tee/tee.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base64/base64.rs b/base64/base64.rs index 2098c0471..91ee7bcbc 100644 --- a/base64/base64.rs +++ b/base64/base64.rs @@ -15,7 +15,7 @@ extern crate serialize; extern crate getopts; extern crate libc; -#[phase(syntax, link)] extern crate log; +#[phase(plugin, link)] extern crate log; use std::io::{println, File, stdin, stdout}; use std::os; diff --git a/cp/cp.rs b/cp/cp.rs index 2bdc19fb9..66e7ec79a 100644 --- a/cp/cp.rs +++ b/cp/cp.rs @@ -12,7 +12,7 @@ */ extern crate getopts; -#[phase(syntax, link)] extern crate log; +#[phase(plugin, link)] extern crate log; use std::os; use std::io; diff --git a/hostid/hostid.rs b/hostid/hostid.rs index dd6a7f58c..f1fa4ce72 100644 --- a/hostid/hostid.rs +++ b/hostid/hostid.rs @@ -18,7 +18,7 @@ extern crate serialize; extern crate libc; -#[phase(syntax, link)] extern crate log; +#[phase(plugin, link)] extern crate log; use std::os; diff --git a/kill/kill.rs b/kill/kill.rs index 0fbe8475f..0aa33fd75 100644 --- a/kill/kill.rs +++ b/kill/kill.rs @@ -17,7 +17,7 @@ extern crate libc; extern crate collections; extern crate serialize; -#[phase(syntax, link)] extern crate log; +#[phase(plugin, link)] extern crate log; use std::os; use std::from_str::from_str; diff --git a/tee/tee.rs b/tee/tee.rs index 59013076c..83fc010e9 100644 --- a/tee/tee.rs +++ b/tee/tee.rs @@ -13,7 +13,7 @@ */ extern crate getopts; -#[phase(syntax, link)] extern crate log; +#[phase(plugin, link)] extern crate log; use std::io::{println, stdin, stdout, Append, File, Truncate, Write}; use std::io::{IoResult};