From c90a46186f0cc54db930e2754db73bfc4cce36ad Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 29 Jun 2024 09:55:08 -0400 Subject: [PATCH] Don't probe system dependencies on Windows This should help unbreak the Astra build on Windows. --- build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.rs b/build.rs index 36238e0..a72d081 100644 --- a/build.rs +++ b/build.rs @@ -2,5 +2,7 @@ // SPDX-License-Identifier: GPL-3.0-or-later fn main() { + // Windows doesn't ship pkgconfig files, typically. At least in our build system. + #[cfg(not(target_os = "windows"))] system_deps::Config::new().probe().unwrap(); }