Skip to content

Commit

Permalink
Don't probe system dependencies on Windows
Browse files Browse the repository at this point in the history
This should help unbreak the Astra build on Windows.
  • Loading branch information
redstrate committed Jun 29, 2024
1 parent 9e83104 commit c90a461
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit c90a461

Please sign in to comment.