Manual fixups.

This commit is contained in:
Jose Narvaez 2015-11-10 20:49:12 +00:00
parent 4e64645228
commit 4f050bf04a

View file

@ -881,7 +881,7 @@ pub fn phase_6_link_output(sess: &Session,
fn escape_dep_filename(filename: &str) -> String {
// Apparently clang and gcc *only* escape spaces:
// http://llvm.org/klaus/clang/commit/9d50634cfc268ecc9a7250226dd5ca0e945240d4
filename.replace(" ", "\")
filename.replace(" ", "\\ ")
}
fn write_out_deps(sess: &Session, outputs: &OutputFilenames, id: &str) {