diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-03-31 14:19:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-03-31 14:19:35 +0000 |
commit | cb405c2039aefdde37914bc6adca98bc1502e8fe (patch) | |
tree | fb2be14252e5a652f7039f25c5fdf88482fb5181 /eclass | |
parent | x86 stable (diff) | |
download | gentoo-2-cb405c2039aefdde37914bc6adca98bc1502e8fe.tar.gz gentoo-2-cb405c2039aefdde37914bc6adca98bc1502e8fe.tar.bz2 gentoo-2-cb405c2039aefdde37914bc6adca98bc1502e8fe.zip |
include the exact command executed in the log
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index d4afc75aabb0..f97d56970791 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.72 2008/02/23 02:21:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.73 2008/03/31 14:19:35 vapier Exp $ # # Maintainer: base-system@gentoo.org # @@ -215,7 +215,7 @@ autotools_run_tool() { local STDERR_TARGET="${T}/$$.out" local ris - printf "***** $1 *****\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" + printf "***** $1 *****\n***** $*\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" ebegin "Running $@" "$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1 |