Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11772 - main/trunk/bin
Date: Sat, 01 Nov 2008 03:28:39
Message-Id: E1Kw7AC-0002BK-TI@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-11-01 03:28:32 +0000 (Sat, 01 Nov 2008)
3 New Revision: 11772
4
5 Modified:
6 main/trunk/bin/emake
7 Log:
8 Bug #240295 - When emake is called, echo the make command similar to the way
9 that econf echoes the configure command.
10
11
12 Modified: main/trunk/bin/emake
13 ===================================================================
14 --- main/trunk/bin/emake 2008-11-01 03:14:47 UTC (rev 11771)
15 +++ main/trunk/bin/emake 2008-11-01 03:28:32 UTC (rev 11772)
16 @@ -11,4 +11,6 @@
17 # /etc/make.globals here because emake is only called from an
18 # ebuild.
19
20 +[[ $PORTAGE_QUIET = 1 ]] || echo ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"
21 +
22 exec ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"