Skip to content

Commit a419fea

Browse files
committed
fixup! grpc-sys: Use grpc headers found by pkgconfig.
1 parent 0fdadb6 commit a419fea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

grpc-sys/build.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,10 @@ fn main() {
408408
.iter()
409409
.map(|inc_path| inc_path.join("grpc"))
410410
.find(|grpc_inc_path| grpc_inc_path.is_dir())
411-
.expect(&format!("Could not find grpc include dir in {:#?}", lib_core.include_paths));
411+
.expect(&format!(
412+
"Could not find grpc include dir in {:#?}",
413+
lib_core.include_paths
414+
));
412415
for inc_path in lib_core.include_paths {
413416
cc.include(inc_path);
414417
}

0 commit comments

Comments
 (0)