summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBarrOff <58253563+BarrOff@users.noreply.github.com>2021-10-24 05:24:31 +0000
committerGitHub <noreply@github.com>2021-10-24 01:24:31 -0400
commit41d99185918923063bd6ae34898c8ac18a941169 (patch)
tree72002b81c625be50ad8a2b59f899ada470309ca1
parent6621e1a3ead7166fa116bfbb8f0d2acb4e318d81 (diff)
downloadNim-41d99185918923063bd6ae34898c8ac18a941169.tar.gz
use `gmake` in the buildscript on Solaris systems (#19036)
-rw-r--r--ci/funs.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/funs.sh b/ci/funs.sh
index 1638931c6..8e7f8faf7 100644
--- a/ci/funs.sh
+++ b/ci/funs.sh
@@ -76,6 +76,8 @@ _nimBuildCsourcesIfNeeded(){
     makeX=gmake
   elif [ "$unamestr" = 'CROSSOS' ]; then
     makeX=gmake
+  elif [ "$unamestr" = 'SunOS' ]; then
+    makeX=gmake
   else
     makeX=make
   fi