Skip to content

Commit

Permalink
normalize the current directory as Path{""}
Browse files Browse the repository at this point in the history
  • Loading branch information
richo committed Mar 9, 2015
1 parent 0487ad9 commit 1036361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_driver/driver.rs
Expand Up @@ -927,7 +927,7 @@ pub fn build_output_filenames(input: &Input,
// We want to toss everything after the final '.'
let dirpath = match *odir {
Some(ref d) => d.clone(),
None => PathBuf::new(".")
None => PathBuf::new("")
};

// If a crate name is present, we use it as the link name
Expand Down

0 comments on commit 1036361

Please sign in to comment.