Skip to content

Commit

Permalink
Fix bug in depinfo output
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaeroxe committed Oct 2, 2024
1 parent e3089c7 commit 6708d56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion compiler/rustc_interface/src/passes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P
for path in out_filenames {
write!(
file,
"{}: {}\n",
"{}: {}",
path.display(),
files
.iter()
Expand All @@ -565,6 +565,7 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P
})?;
}
writeln!(file)?;
writeln!(file)?;
}

// Emit a fake target for each input file to the compilation. This
Expand Down

0 comments on commit 6708d56

Please sign in to comment.