Skip to content

Commit

Permalink
Add Chimera Linux to gmake targets (#73)
Browse files Browse the repository at this point in the history
Signed-off-by: Val Packett <[email protected]>
  • Loading branch information
valpackett authored Feb 19, 2024
1 parent b913c24 commit af6e652
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion jemalloc-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,14 @@ fn gnu_target(target: &str) -> String {
}

fn make_cmd(host: &str) -> &'static str {
const GMAKE_HOSTS: &[&str] = &["bitrig", "dragonfly", "freebsd", "netbsd", "openbsd"];
const GMAKE_HOSTS: &[&str] = &[
"bitrig",
"dragonfly",
"freebsd",
"netbsd",
"openbsd",
"chimera-linux",
];
if GMAKE_HOSTS.iter().any(|i| host.contains(i)) {
"gmake"
} else if host.contains("windows") {
Expand Down

0 comments on commit af6e652

Please sign in to comment.