From 997e00c3ae05c543f03085e6f9d87cc062c67d8a Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 6 Feb 2011 15:00:47 -0800 Subject: default_src_test: handle EAPI 4 emake failure This will fix bug #353897. --- bin/ebuild.sh | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/ebuild.sh b/bin/ebuild.sh index a8ed74591..ebe2c65d3 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -626,15 +626,21 @@ _eapi0_src_compile() { } _eapi0_src_test() { - if emake -j1 check -n &> /dev/null; then + # Since we don't want emake's automatic die + # support (EAPI 4 and later), and we also don't + # want the warning messages that it produces if + # we call it in 'nonfatal' mode, we use emake_cmd + # to emulate the desired parts of emake behavior. + local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" + if $emake_cmd -j1 check -n &> /dev/null; then vecho ">>> Test phase [check]: ${CATEGORY}/${PF}" - if ! emake -j1 check; then + if ! $emake_cmd -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 emake -j1 test -n &> /dev/null; then + elif $emake_cmd -j1 test -n &> /dev/null; then vecho ">>> Test phase [test]: ${CATEGORY}/${PF}" - if ! emake -j1 test; then + if ! $emake_cmd -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 -- cgit v1.2.3-1-g7c22