summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-07-25 07:46:41 +0200
committerMichał Górny <mgorny@gentoo.org>2019-07-27 11:49:47 +0200
commit5e25faf276f37b610752fd5e3cdae05699bf627a (patch)
tree360b98d218c5e4862b54cdffd21d334d8eeed179 /eclass/vcs-snapshot.eclass
parentvcs-snapshot.eclass: Update 'unusage' warning (diff)
downloadgentoo-5e25faf276f37b610752fd5e3cdae05699bf627a.tar.gz
gentoo-5e25faf276f37b610752fd5e3cdae05699bf627a.tar.bz2
gentoo-5e25faf276f37b610752fd5e3cdae05699bf627a.zip
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@gentoo.org>
Diffstat (limited to 'eclass/vcs-snapshot.eclass')
-rw-r--r--eclass/vcs-snapshot.eclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass
index 2e734c509d1a..312e9a4611e1 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
;;