From fd3b63d4a56a557fff0d295ce709f9b9cf1a066f Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 31 Aug 2020 13:34:12 -0400 Subject: [PATCH] Attempt to use gmake on Darwin --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ea2b3b1e..99ab688c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ notifications: email: false before_install: - | - if [ "$(uname)" != "FreeBSD" ]; then + if [[ "$(uname)" != "FreeBSD" && "$(uname)" != "Darwin" ]]; then sudo ln -s /usr/bin/make /usr/bin/gmake fi - |