summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorEuan <euantorano@users.noreply.github.com>2021-05-23 17:23:20 +0100
committerGitHub <noreply@github.com>2021-05-23 09:23:20 -0700
commit61630c6aee56acf688c48c00f5a6711a59e79616 (patch)
tree38139ed92471b10a3e2e47d2e5c32305a385fa6b
parent1636c05d138a7a52c5b6cb3cafe6ab84f59f086b (diff)
downloadNim-61630c6aee56acf688c48c00f5a6711a59e79616.tar.gz
Use gmake for NetBSD as well as FreeBSD/OpenBSD (#18064)
-rw-r--r--ci/funs.sh2
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