Add Chimera Linux to gmake targets (#73)
Signed-off-by: Val Packett <val@packett.cool>
This commit is contained in:
parent
b913c24fdd
commit
af6e6529c0
|
@ -370,7 +370,14 @@ fn gnu_target(target: &str) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn make_cmd(host: &str) -> &'static str {
|
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)) {
|
if GMAKE_HOSTS.iter().any(|i| host.contains(i)) {
|
||||||
"gmake"
|
"gmake"
|
||||||
} else if host.contains("windows") {
|
} else if host.contains("windows") {
|
||||||
|
|
Loading…
Reference in New Issue