use emake -j1 in default src_test() instead of make
authorMike Frysinger <vapier@gentoo.org>
Wed, 7 Dec 2005 00:46:19 +0000 (00:46 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 7 Dec 2005 00:46:19 +0000 (00:46 -0000)
svn path=/main/trunk/; revision=2341

bin/ebuild.sh

index d6609722320ebfe7ad8ae99c2057cb78e4aec588..e0a6cd56b1ab33f565cbe5ec9985926b33d6cd59 100755 (executable)
@@ -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