From 96d720e4492aac61073b15c59082080fac3e75c0 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 31 Jan 2010 18:24:28 -0800 Subject: [PATCH] Meta/Make: avoid using -j$n on OpenBSD for now --- Make | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Make b/Make index 107b9579f7..77ed76b86a 100755 --- a/Make +++ b/Make @@ -58,7 +58,9 @@ case `uname` in OpenBSD) NEEDS_CRYPTO_WITH_SSL=YesPlease ; export NEEDS_CRYPTO_WITH_SSL GIT_SKIP_TESTS="t9200 t9502 $GIT_SKIP_TESTS"; export GIT_SKIP_TESTS - NO_PEDANTIC=CannotDo Wall= + SHELL_PATH=/usr/local/bin/bash; export SHELL_PATH + NO_PEDANTIC=CannotDo NO_JOBS=CannotDo + Wall= ;; FreeBSD) OLD_ICONV=YesPlease; export OLD_ICONV @@ -90,7 +92,10 @@ do # O="$O -fwrapv -fno-strict-overflow" ;; -j*) - jobs=$1 + case "$NO_JOBS" in + ?*) jobs= ;; + '') jobs=$1 ;; + esac ;; -loose | --loose) Wall=