diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-12-02 03:27:37 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-02 03:27:37 +0000 |
commit | d76380c0c443a579e766aedc1a95ec54c01a54c7 (patch) | |
tree | 98dba015778624ccd00ab435befebcb7ef778393 /eclass/eutils.eclass | |
parent | Add keyword ~amd64-linux (tested on ubuntu 10.04). (diff) | |
download | gentoo-2-d76380c0c443a579e766aedc1a95ec54c01a54c7.tar.gz gentoo-2-d76380c0c443a579e766aedc1a95ec54c01a54c7.tar.bz2 gentoo-2-d76380c0c443a579e766aedc1a95ec54c01a54c7.zip |
include $PWD in epatch log
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 4427e7d4e393..2e0ea1a22387 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.368 2011/10/27 07:16:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.369 2011/12/02 03:27:37 vapier Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -337,7 +337,7 @@ epatch() { STDERR_TARGET="${T}/${patchname}-$$.out" fi - printf "***** %s *****\n\n" "${patchname}" > "${STDERR_TARGET}" + printf "***** %s *****\nPWD: %s\n\n" "${patchname}" "${PWD}" > "${STDERR_TARGET}" # Decompress the patch if need be local count=0 |