about summary refs log tree commit diff
path: root/src/bootstrap/native.rs
diff options
context:
space:
mode:
authorAndy Russell <arussell123@gmail.com>2019-05-09 12:03:13 -0400
committerAndy Russell <arussell123@gmail.com>2019-05-09 12:03:13 -0400
commitb2f71fb540faa4218de506c4d82bbcf237ea78d6 (patch)
treef400b7223dc55e118897880e1063679010245b89 /src/bootstrap/native.rs
parente6305805a7d36b23c79f8308774778ba6481ce47 (diff)
downloadrust-b2f71fb540faa4218de506c4d82bbcf237ea78d6.tar.gz
rust-b2f71fb540faa4218de506c4d82bbcf237ea78d6.zip
remove unneeded `extern crate`s from build tools
Diffstat (limited to 'src/bootstrap/native.rs')
-rw-r--r--src/bootstrap/native.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs
index 285f9458c44..5777331b9bf 100644
--- a/src/bootstrap/native.rs
+++ b/src/bootstrap/native.rs
@@ -14,7 +14,7 @@ use std::fs::{self, File};
 use std::path::{Path, PathBuf};
 use std::process::Command;
 
-use build_helper::output;
+use build_helper::{output, t};
 use cmake;
 use cc;