From: Zac Medico Date: Sat, 1 Nov 2008 03:28:32 +0000 (-0000) Subject: Bug #240295 - When emake is called, echo the make command similar to the way X-Git-Tag: v2.2_rc13~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8de0ec2956737182c29b0c7b10fd9e94803d32d8;p=portage.git Bug #240295 - When emake is called, echo the make command similar to the way that econf echoes the configure command. svn path=/main/trunk/; revision=11772 --- diff --git a/bin/emake b/bin/emake index 2554db982..e484b4de9 100755 --- a/bin/emake +++ b/bin/emake @@ -11,4 +11,6 @@ # /etc/make.globals here because emake is only called from an # ebuild. +[[ $PORTAGE_QUIET = 1 ]] || echo ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@" + exec ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"