diff options
author | Euan <euantorano@users.noreply.github.com> | 2021-05-23 17:23:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 09:23:20 -0700 |
commit | 61630c6aee56acf688c48c00f5a6711a59e79616 (patch) | |
tree | 38139ed92471b10a3e2e47d2e5c32305a385fa6b | |
parent | 1636c05d138a7a52c5b6cb3cafe6ab84f59f086b (diff) | |
download | Nim-61630c6aee56acf688c48c00f5a6711a59e79616.tar.gz |
Use gmake for NetBSD as well as FreeBSD/OpenBSD (#18064)
-rw-r--r-- | ci/funs.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/funs.sh b/ci/funs.sh index cad005246..0e4f0eb3b 100644 --- a/ci/funs.sh +++ b/ci/funs.sh @@ -55,6 +55,8 @@ _nimBuildCsourcesIfNeeded(){ makeX=gmake elif [ "$unamestr" = 'OpenBSD' ]; then makeX=gmake + elif [ "$unamestr" = 'NetBSD' ]; then + makeX=gmake else makeX=make fi |