Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11784 - main/trunk/bin
Date: Sat, 01 Nov 2008 10:51:16
Message-Id: E1KwE4Y-0005pm-6M@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-11-01 10:51:13 +0000 (Sat, 01 Nov 2008)
3 New Revision: 11784
4
5 Modified:
6 main/trunk/bin/emake
7 Log:
8 When echoing the emake command, redirect to stderr since otherwise it breaks
9 the gcc ebuild because of the way that the get_make_var() function from
10 toolchain.eclass is used.
11
12
13 Modified: main/trunk/bin/emake
14 ===================================================================
15 --- main/trunk/bin/emake 2008-11-01 08:48:15 UTC (rev 11783)
16 +++ main/trunk/bin/emake 2008-11-01 10:51:13 UTC (rev 11784)
17 @@ -11,6 +11,6 @@
18 # /etc/make.globals here because emake is only called from an
19 # ebuild.
20
21 -[[ $PORTAGE_QUIET = 1 ]] || echo ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"
22 +[[ $PORTAGE_QUIET = 1 ]] || echo ${MAKE:-make} $MAKEOPTS $EXTRA_EMAKE "$@" >&2
23
24 exec ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"