Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Fri, 23 Aug 2019 17:58:27
Message-Id: 1566583068.eb4bc1b1d155d7807bd3047083c480b77828556f.zmedico@gentoo
1 commit: eb4bc1b1d155d7807bd3047083c480b77828556f
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Fri Aug 23 17:57:17 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 23 17:57:48 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=eb4bc1b1
7
8 unpack: Restore error message.
9
10 This was inavertently reverted with commit 17ecafa949.
11
12 Fixes: 17ecafa949c87a6f2a2d2c98c7de18ed06f08f2f
13 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
14
15 bin/phase-helpers.sh | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
19 index cbc803277..42d3bcc54 100644
20 --- a/bin/phase-helpers.sh
21 +++ b/bin/phase-helpers.sh
22 @@ -347,7 +347,7 @@ unpack() {
23 die "Relative paths to unpack() must be prefixed with './' in EAPI ${EAPI}"
24 fi
25 fi
26 - [[ ! -s ${srcdir}${x} ]] && die "${x} does not exist"
27 + [[ ! -s ${srcdir}${x} ]] && die "unpack: ${x} does not exist"
28
29 __unpack_tar() {
30 if [[ ${y_insensitive} == tar ]] ; then