Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass
Date: Mon, 07 Jan 2008 02:54:53
Message-Id: E1JBi8Y-0004MH-7L@stork.gentoo.org
1 vapier 08/01/07 02:54:50
2
3 Modified: autotools.eclass
4 Log:
5 quote $T usage #204666 by Santiago M. Mola
6
7 Revision Changes Path
8 1.69 eclass/autotools.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.eclass?rev=1.69&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.eclass?rev=1.69&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.eclass?r1=1.68&r2=1.69
13
14 Index: autotools.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v
17 retrieving revision 1.68
18 retrieving revision 1.69
19 diff -u -r1.68 -r1.69
20 --- autotools.eclass 18 Sep 2007 13:25:38 -0000 1.68
21 +++ autotools.eclass 7 Jan 2008 02:54:49 -0000 1.69
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.68 2007/09/18 13:25:38 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.69 2008/01/07 02:54:49 vapier Exp $
27 #
28 # Maintainer: base-system@g.o
29 #
30 @@ -200,11 +200,10 @@
31 local STDERR_TARGET="${T}/$$.out"
32 local ris
33
34 - echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}
35 - echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}
36 + printf "***** $1 *****\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}"
37
38 ebegin "Running $@"
39 - $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1
40 + "$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1
41 ris=$?
42 eend ${ris}
43
44
45
46
47 --
48 gentoo-commits@l.g.o mailing list