Skip to content

Commit e16a3f9

Browse files
authored
Merge pull request #1112 from ehuss/check-cfg
Squelch the warning about libgit2_vendored check-cfg
2 parents 92d96ac + 8ce89e2 commit e16a3f9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

libgit2-sys/build.rs

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ fn try_system_libgit2() -> Result<pkg_config::Library, pkg_config::Error> {
2222
}
2323

2424
fn main() {
25+
println!(
26+
"cargo:rustc-check-cfg=cfg(\
27+
libgit2_vendored,\
28+
)"
29+
);
30+
2531
let https = env::var("CARGO_FEATURE_HTTPS").is_ok();
2632
let ssh = env::var("CARGO_FEATURE_SSH").is_ok();
2733
let vendored = env::var("CARGO_FEATURE_VENDORED").is_ok();

0 commit comments

Comments
 (0)