Skip to content

Commit 96d720e

Browse files
committed
Meta/Make: avoid using -j$n on OpenBSD for now
1 parent 95ca829 commit 96d720e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Make

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ case `uname` in
5858
OpenBSD)
5959
NEEDS_CRYPTO_WITH_SSL=YesPlease ; export NEEDS_CRYPTO_WITH_SSL
6060
GIT_SKIP_TESTS="t9200 t9502 $GIT_SKIP_TESTS"; export GIT_SKIP_TESTS
61-
NO_PEDANTIC=CannotDo Wall=
61+
SHELL_PATH=/usr/local/bin/bash; export SHELL_PATH
62+
NO_PEDANTIC=CannotDo NO_JOBS=CannotDo
63+
Wall=
6264
;;
6365
FreeBSD)
6466
OLD_ICONV=YesPlease; export OLD_ICONV
@@ -90,7 +92,10 @@ do
9092
# O="$O -fwrapv -fno-strict-overflow"
9193
;;
9294
-j*)
93-
jobs=$1
95+
case "$NO_JOBS" in
96+
?*) jobs= ;;
97+
'') jobs=$1 ;;
98+
esac
9499
;;
95100
-loose | --loose)
96101
Wall=

0 commit comments

Comments
 (0)