From: Mike Frysinger Date: Wed, 7 Dec 2005 00:46:19 +0000 (-0000) Subject: use emake -j1 in default src_test() instead of make X-Git-Tag: v2.1_pre1~39 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c6decb18f1d3b917b5b44853d129cfd59f769423;p=portage.git use emake -j1 in default src_test() instead of make svn path=/main/trunk/; revision=2341 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index d66097223..e0a6cd56b 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -568,15 +568,15 @@ src_compile() { src_test() { addpredict / - if make check -n &> /dev/null; then + if emake -j1 check -n &> /dev/null; then echo ">>> Test phase [check]: ${CATEGORY}/${PF}" - if ! make check; then + if ! emake -j1 check; then hasq test $FEATURES && die "Make check failed. See above for details." hasq test $FEATURES || eerror "Make check failed. See above for details." fi - elif make test -n &> /dev/null; then + elif emake -j1 test -n &> /dev/null; then echo ">>> Test phase [test]: ${CATEGORY}/${PF}" - if ! make test; then + if ! emake -j1 test; then hasq test $FEATURES && die "Make test failed. See above for details." hasq test $FEATURES || eerror "Make test failed. See above for details." fi