Skip to content

Commit 5389792

Browse files
committed
Fix run-make-support to respect per-stage cargo
1 parent 705ab17 commit 5389792

File tree

1 file changed

+3
-2
lines changed
  • src/tools/run-make-support/src/external_deps

1 file changed

+3
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use crate::command::Command;
22
use crate::env_var;
33

4-
/// Returns a command that can be used to invoke Cargo.
4+
/// Returns a command that can be used to invoke cargo. The cargo is provided by compiletest
5+
/// through the `CARGO` env var.
56
pub fn cargo() -> Command {
6-
Command::new(env_var("BOOTSTRAP_CARGO"))
7+
Command::new(env_var("CARGO"))
78
}

0 commit comments

Comments
 (0)