mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
Meta/Make: avoid using -j$n on OpenBSD for now
This commit is contained in:
parent
95ca829f34
commit
96d720e449
1 changed files with 7 additions and 2 deletions
9
Make
9
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=
|
||||
|
|
Loading…
Reference in a new issue