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 | 677a6b4a9ba5d0bd876b06a48ddfc79c2bfbaf71 (patch) | |
tree | 8174ad8e098a092733d900e609f9abafc5829a57 /eclass/autotools.eclass | |
parent | x86 stable (diff) | |
download | historical-677a6b4a9ba5d0bd876b06a48ddfc79c2bfbaf71.tar.gz historical-677a6b4a9ba5d0bd876b06a48ddfc79c2bfbaf71.tar.bz2 historical-677a6b4a9ba5d0bd876b06a48ddfc79c2bfbaf71.zip |
include the exact command executed in the log
Diffstat (limited to 'eclass/autotools.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 |