Skip to content

Commit 2d9c4d3

Browse files
committed
fix fake mpi include path
This include path was entirely wrong. The only reason it compiled on my computer was because it was locating the system mpi.h instead.
1 parent 8d1f5c3 commit 2d9c4d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn main() {
1515
Err(env::VarError::NotPresent) => "".to_string(),
1616
Err(e) => panic!("{}", e),
1717
};
18-
let path = format!("fake-system{}{}", path_separator, path);
18+
let path = format!("src/fake-system{}{}", path_separator, path);
1919
env::set_var("C_INCLUDE_PATH", path);
2020
}
2121

0 commit comments

Comments
 (0)