Skip to content

Commit

Permalink
Review comments about run-make-support
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Mar 11, 2024
1 parent 4a631b5 commit aeb51f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/run-make-support/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub fn out_dir() -> PathBuf {
fn setup_common_build_cmd() -> Command {
let rustc = env::var("RUSTC").unwrap();
let mut cmd = Command::new(rustc);
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());
cmd
}

Expand Down

0 comments on commit aeb51f4

Please sign in to comment.