From e5d5e00969ba4cfc298e124767b2326e248e5946 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Mon, 13 May 2024 20:04:08 +0200 Subject: [PATCH] Fix missing rename in build.rs --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index c4d25d15e..1fad634f7 100644 --- a/build.rs +++ b/build.rs @@ -117,7 +117,7 @@ fn detect_bsd(_: &Target) -> Result> { 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) }