opensmtpd-filter-dkimout/build.rs

10 lines
188 B
Rust
Raw Normal View History

2023-03-26 23:42:16 +02:00
use std::env;
const DEFAULT_VARLIBDIR: &str = "/var/lib/";
fn main() {
if let Err(_) = env::var("VARLIBDIR") {
println!("cargo:rustc-env={}={}", "VARLIBDIR", DEFAULT_VARLIBDIR);
}
}