Skip to content

Commit 0b8c3ce

Browse files
committed
Fix integration warnings
1 parent 3c96932 commit 0b8c3ce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/bootstrap/dist.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,15 @@ pub fn rustc(build: &Build, stage: u32, host: &str) {
221221

222222
// Match all source files
223223
if filename.ends_with(".1.in") {
224-
let header = format!(r##".TH RUSTC "1" "{now_string}" "rustc 1.12.0" "User Commands""##, now_string=now_string);
224+
let header =
225+
format!(r##".TH RUSTC "1" "{now_string}" "rustc 1.12.0" "User Commands""##
226+
, now_string=now_string);
225227

226228
println!("build: {:?}\nheader: {:?}", build.release, header);
227229
}
228230
// Match all generated files
229231
if filename.ends_with(".1") {
230-
// TODO copy them
232+
// FIXME copy them
231233
}
232234
}
233235
}

0 commit comments

Comments
 (0)