Skip to content

Commit

Permalink
fixup! grpc-sys: Use grpc headers found by pkgconfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssloboda committed Dec 28, 2020
1 parent 0fdadb6 commit a419fea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion grpc-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,10 @@ fn main() {
.iter()
.map(|inc_path| inc_path.join("grpc"))
.find(|grpc_inc_path| grpc_inc_path.is_dir())
.expect(&format!("Could not find grpc include dir in {:#?}", lib_core.include_paths));
.expect(&format!(
"Could not find grpc include dir in {:#?}",
lib_core.include_paths
));
for inc_path in lib_core.include_paths {
cc.include(inc_path);
}
Expand Down

0 comments on commit a419fea

Please sign in to comment.