Skip to content

Commit 9e133d1

Browse files
committed
auto merge of #12176 : kballard/rust/dep-info-lib-filename, r=alexcrichton
Fixes #12174.
2 parents fd4979a + 8be1e34 commit 9e133d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/driver/driver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ pub fn build_output_filenames(input: &Input,
10851085
// We want to toss everything after the final '.'
10861086
let dirpath = match *odir {
10871087
Some(ref d) => d.clone(),
1088-
None => os::getcwd(),
1088+
None => Path::new(".")
10891089
};
10901090

10911091
let mut stem = match *input {

0 commit comments

Comments
 (0)