diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2022-03-03 18:15:01 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2022-03-05 15:31:22 +0100 |
| commit | e657da72aa4bd7ed5edda194b770903ea0cf1dd1 (patch) | |
| tree | 5e905cb8bd2e883878d8e6fc8842b6284cd5a4bd /src/bootstrap/test.rs | |
| parent | 0cfc3e101689d050432f600a35e953413b87147f (diff) | |
| download | rust-e657da72aa4bd7ed5edda194b770903ea0cf1dd1.tar.gz rust-e657da72aa4bd7ed5edda194b770903ea0cf1dd1.zip | |
Merge build_helper into util
Diffstat (limited to 'src/bootstrap/test.rs')
| -rw-r--r-- | src/bootstrap/test.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 714a2df34a7..e4fcb287f12 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -11,7 +11,6 @@ use std::iter; use std::path::{Path, PathBuf}; use std::process::{Command, Stdio}; -use crate::build_helper::{self, output, t}; use crate::builder::{Builder, Compiler, Kind, RunConfig, ShouldRun, Step}; use crate::cache::Interned; use crate::compile; @@ -21,7 +20,7 @@ use crate::flags::Subcommand; use crate::native; use crate::tool::{self, SourceType, Tool}; use crate::toolstate::ToolState; -use crate::util::{self, add_link_lib_path, dylib_path, dylib_path_var}; +use crate::util::{self, add_link_lib_path, dylib_path, dylib_path_var, output, t}; use crate::Crate as CargoCrate; use crate::{envify, CLang, DocTests, GitRepo, Mode}; @@ -2305,9 +2304,7 @@ impl Step for Distcheck { .current_dir(&dir), ); builder.run( - Command::new(build_helper::make(&builder.config.build.triple)) - .arg("check") - .current_dir(&dir), + Command::new(util::make(&builder.config.build.triple)).arg("check").current_dir(&dir), ); // Now make sure that rust-src has all of libstd's dependencies |
