From 0b8c3ce4c1fefdaf4dc359ec234c2d71bdb94812 Mon Sep 17 00:00:00 2001 From: Stefan Schindler Date: Tue, 16 Aug 2016 08:37:18 +0200 Subject: [PATCH] Fix integration warnings --- src/bootstrap/dist.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index aaab5977b4e76..0a380a5fb657c 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -221,13 +221,15 @@ pub fn rustc(build: &Build, stage: u32, host: &str) { // Match all source files if filename.ends_with(".1.in") { - let header = format!(r##".TH RUSTC "1" "{now_string}" "rustc 1.12.0" "User Commands""##, now_string=now_string); + let header = + format!(r##".TH RUSTC "1" "{now_string}" "rustc 1.12.0" "User Commands""## + , now_string=now_string); println!("build: {:?}\nheader: {:?}", build.release, header); } // Match all generated files if filename.ends_with(".1") { - // TODO copy them + // FIXME copy them } } }