We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
S
SOURCE_ROOT
1 parent 7eff2d9 commit eac63b7Copy full SHA for eac63b7
src/tools/compiletest/src/runtest.rs
@@ -3566,7 +3566,7 @@ impl<'test> TestCx<'test> {
3566
.env(dylib_env_var(), &dylib_env_paths)
3567
.env("TARGET", &self.config.target)
3568
.env("PYTHON", &self.config.python)
3569
- .env("S", &src_root)
+ .env("SOURCE_ROOT", &src_root)
3570
.env("RUST_BUILD_STAGE", &self.config.stage_id)
3571
.env("RUSTC", cwd.join(&self.config.rustc_path))
3572
.env("TMPDIR", &rmake_out_dir)
src/tools/run-make-support/src/lib.rs
@@ -89,7 +89,7 @@ pub fn htmldocck() -> Command {
89
90
/// Path to the root rust-lang/rust source checkout.
91
pub fn source_root() -> PathBuf {
92
- env_var("S").into()
+ env_var("SOURCE_ROOT").into()
93
}
94
95
/// Construct the static library name based on the platform.
0 commit comments