From 8ed7d0fc707493e2843f70c199793cfe694093d0 Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Thu, 10 Feb 2022 22:48:14 -0800 Subject: [PATCH] [scripts][make-parallel] add uname cases for netbsd and openbsd as well --- scripts/make-parallel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-parallel b/scripts/make-parallel index 9740150f..b560c6da 100755 --- a/scripts/make-parallel +++ b/scripts/make-parallel @@ -13,7 +13,7 @@ Linux) Darwin) PARALLEL=-j`sysctl -n hw.ncpu` ;; -FreeBSD) +FreeBSD|NetBSD|OpenBSD) PARALLEL=-j`sysctl -n hw.ncpu` MAKE=gmake ;;