We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a631b5 commit aeb51f4Copy full SHA for aeb51f4
src/tools/run-make-support/src/lib.rs
@@ -11,7 +11,7 @@ pub fn out_dir() -> PathBuf {
11
fn setup_common_build_cmd() -> Command {
12
let rustc = env::var("RUSTC").unwrap();
13
let mut cmd = Command::new(rustc);
14
- cmd.arg("--out-dir").arg(out_dir()).arg("-L").arg(env::var("TMPDIR").unwrap());
+ cmd.arg("--out-dir").arg(out_dir()).arg("-L").arg(out_dir());
15
cmd
16
}
17
0 commit comments