diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-04-10 11:42:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-04-10 11:42:29 +0000 |
commit | c45c5b05bcc99875408823e4dc8de6184a862acc (patch) | |
tree | d0c22871e5747a719fc5e6d822c3d81472f4e0be /eclass | |
parent | Cleanup. (diff) | |
download | gentoo-2-c45c5b05bcc99875408823e4dc8de6184a862acc.tar.gz gentoo-2-c45c5b05bcc99875408823e4dc8de6184a862acc.tar.bz2 gentoo-2-c45c5b05bcc99875408823e4dc8de6184a862acc.zip |
include $S in the default src_unpack msg
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/git.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/git.eclass b/eclass/git.eclass index 94e507b94973..0102907a62b7 100644 --- a/eclass/git.eclass +++ b/eclass/git.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.4 2007/03/14 15:48:12 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.5 2007/04/10 11:42:29 vapier Exp $ ## --------------------------------------------------------------------------- # # subversion.eclass author: Akinori Hattori <hattya@gentoo.org> @@ -230,7 +230,8 @@ git_fetch() { # export to the ${WORKDIR} mkdir -p "${S}" git tar-tree ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) - echo + + echo ">>> Unpacked to ${S}" } |