Skip to content

Commit aeb51f4

Browse files
committed
Review comments about run-make-support
1 parent 4a631b5 commit aeb51f4

File tree

1 file changed

+1
-1
lines changed
  • src/tools/run-make-support/src

1 file changed

+1
-1
lines changed

src/tools/run-make-support/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn out_dir() -> PathBuf {
1111
fn setup_common_build_cmd() -> Command {
1212
let rustc = env::var("RUSTC").unwrap();
1313
let mut cmd = Command::new(rustc);
14-
cmd.arg("--out-dir").arg(out_dir()).arg("-L").arg(env::var("TMPDIR").unwrap());
14+
cmd.arg("--out-dir").arg(out_dir()).arg("-L").arg(out_dir());
1515
cmd
1616
}
1717

0 commit comments

Comments
 (0)