commit: 5e25faf276f37b610752fd5e3cdae05699bf627a Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Jul 25 05:46:41 2019 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jul 27 09:49:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e25faf2
vcs-snapshot.eclass: Add verbose einfo for unpacking Add an einfo call to make explicit notice of each archive being unpacked. Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/vcs-snapshot.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass index 2e734c509d1..312e9a4611e 100644 --- a/eclass/vcs-snapshot.eclass +++ b/eclass/vcs-snapshot.eclass @@ -72,6 +72,7 @@ vcs-snapshot_src_unpack() { # fine? i.e. if the tarball has actually a parent dir. mkdir "${destdir}" || die # -o (--no-same-owner) to avoid restoring original owner + einfo "Unpacking ${f}" tar -C "${destdir}" -x -o --strip-components 1 \ -f "${DISTDIR}/${f}" || die ;;