Skip to content

Commit

Permalink
Update configuration for BSD target_os
Browse files Browse the repository at this point in the history
`dragonfly` was moved to `dragonflybsd`, and `bitrig` is no longer a
target. Adjust `cfg!` statements to match this.
  • Loading branch information
tgross35 committed Aug 15, 2024
1 parent e31c084 commit 0ea0d07
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -837,8 +837,7 @@ impl Config {
|| cfg!(target_os = "openbsd")
|| cfg!(target_os = "netbsd")
|| cfg!(target_os = "freebsd")
|| cfg!(target_os = "bitrig")
|| cfg!(target_os = "dragonflybsd")) =>
|| cfg!(target_os = "dragonfly")) =>
{
use_jobserver = true;
cmd.env("MAKEFLAGS", makeflags);
Expand Down

0 comments on commit 0ea0d07

Please sign in to comment.