Skip to content

Commit

Permalink
Use gmake on AIX
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Luo committed Jul 30, 2024
1 parent 59c6fad commit 8986af9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/testsuite/jobserver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ fn validate(_: &str) {
fn make_exe() -> &'static str {
if cfg!(windows) {
"mingw32-make"
} else if cfg!(target_os = "aix") {
"gmake"
} else {
"make"
}
Expand Down

0 comments on commit 8986af9

Please sign in to comment.