Browse Source

Don't include the colon in /Fo for MSVC

Closes #66
add-rc-path
Alex Crichton 9 years ago
parent
commit
2a7ae029d3
  1. 2
      src/lib.rs

2
src/lib.rs

@ -352,7 +352,7 @@ impl Config {
if msvc && is_asm {
cmd.arg("/Fo").arg(dst);
} else if msvc {
let mut s = OsString::from("/Fo:");
let mut s = OsString::from("/Fo");
s.push(&dst);
cmd.arg(s);
} else {

Loading…
Cancel
Save