Skip to content

Commit

Permalink
Fix integration warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dns2utf8 committed Aug 16, 2016
1 parent 3c96932 commit 0b8c3ce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/bootstrap/dist.rs
Expand Up @@ -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
}
}
}
Expand Down

0 comments on commit 0b8c3ce

Please sign in to comment.