From: Zac Medico Date: Sat, 1 Nov 2008 10:51:13 +0000 (-0000) Subject: When echoing the emake command, redirect to stderr since otherwise it breaks X-Git-Tag: v2.2_rc13~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=68ae2104d8a0ab3fc42feff292eb1274c0b6cad1;p=portage.git When echoing the emake command, redirect to stderr since otherwise it breaks the gcc ebuild because of the way that the get_make_var() function from toolchain.eclass is used. svn path=/main/trunk/; revision=11784 --- diff --git a/bin/emake b/bin/emake index e484b4de9..db5b30b59 100755 --- a/bin/emake +++ b/bin/emake @@ -11,6 +11,6 @@ # /etc/make.globals here because emake is only called from an # ebuild. -[[ $PORTAGE_QUIET = 1 ]] || echo ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@" +[[ $PORTAGE_QUIET = 1 ]] || echo ${MAKE:-make} $MAKEOPTS $EXTRA_EMAKE "$@" >&2 exec ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"