mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
Fix bug in depinfo output
This commit is contained in:
parent
e3089c787c
commit
6708d56fd2
@ -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()
|
||||
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user