Skip to content

Commit

Permalink
fix: cargo has now cargo:info=MESSAGE, only warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ttys3 committed Jun 10, 2023
1 parent 63e178b commit ae270bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ fn main() -> miette::Result<()> {
for include in &lib.include_paths {
println!("cargo:root={}", include.display());
}
println!("cargo:info=Found system xapian: {}", pkg_config_lib_name);
println!("cargo:warning=Found system xapian: {}, include_paths: {:?}, libs: {:?}",
pkg_config_lib_name, &lib.include_paths, &lib.libs);
} else {
println!("cargo:warning=Failed to find system xapian, falling back to vendored");
vendored_xapian = true;
Expand Down

0 comments on commit ae270bb

Please sign in to comment.