Fix missing rename in build.rs

This commit is contained in:
Fabian Boehm 2024-05-13 20:04:08 +02:00
parent ab68cf1eda
commit e5d5e00969

View File

@ -117,7 +117,7 @@ fn detect_bsd(_: &Target) -> Result<bool, Box<dyn Error>> {
target_os = "netbsd",
target_os = "openbsd",
))]
assert!(result, "Target incorrectly detected as not BSD!");
assert!(is_bsd, "Target incorrectly detected as not BSD!");
Ok(is_bsd)
}