File tree 1 file changed +3
-3
lines changed
src/tools/run-make-support/src
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use std::process::{Command, Output};
5
5
mod rustdoc;
6
6
pub use rustdoc:: rustdoc;
7
7
8
- fn setup_common_build_cmd ( ) -> Command {
8
+ fn setup_common_rustc_build_cmd ( ) -> Command {
9
9
let rustc = env:: var ( "RUSTC" ) . unwrap ( ) ;
10
10
let mut cmd = Command :: new ( rustc) ;
11
11
cmd. arg ( "--out-dir" )
@@ -39,7 +39,7 @@ pub struct RustcInvocationBuilder {
39
39
40
40
impl RustcInvocationBuilder {
41
41
fn new ( ) -> Self {
42
- let cmd = setup_common_build_cmd ( ) ;
42
+ let cmd = setup_common_rustc_build_cmd ( ) ;
43
43
Self { cmd }
44
44
}
45
45
@@ -85,7 +85,7 @@ pub struct AuxBuildInvocationBuilder {
85
85
86
86
impl AuxBuildInvocationBuilder {
87
87
fn new ( ) -> Self {
88
- let mut cmd = setup_common_build_cmd ( ) ;
88
+ let mut cmd = setup_common_rustc_build_cmd ( ) ;
89
89
cmd. arg ( "--crate-type=lib" ) ;
90
90
Self { cmd }
91
91
}
You can’t perform that action at this time.
0 commit comments