Skip to content

Commit

Permalink
Use correct target_os for DragonFlyBSD
Browse files Browse the repository at this point in the history
This should be `dragonfly`, not `dragonflybsd`.
  • Loading branch information
waywardmonkeys committed Jul 3, 2024
1 parent c4a60dd commit 957eac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ impl Config {
|| 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 957eac4

Please sign in to comment.