Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 01 Sep 2020 16:09:05
Message-Id: 1598976499.6159d3726a311d1db1a2d27e4785447b40de1787.fordfrog@gentoo
1 commit: 6159d3726a311d1db1a2d27e4785447b40de1787
2 Author: Henning Sudbrock <github <AT> hsudbrock <DOT> de>
3 AuthorDate: Tue Sep 1 16:59:41 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 16:08:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6159d372
7
8 java-pkg-simple.eclass: Fix error message when copying resources
9
10 Signed-off-by: Henning Sudbrock <github <AT> hsudbrock.de>
11 Closes: https://github.com/gentoo/gentoo/pull/17363
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 eclass/java-pkg-simple.eclass | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass
18 index bfec305123f..560db83d77b 100644
19 --- a/eclass/java-pkg-simple.eclass
20 +++ b/eclass/java-pkg-simple.eclass
21 @@ -302,7 +302,7 @@ java-pkg-simple_prepend_resources() {
22 # add resources directory to classpath
23 for resource in "${resources[@]}"; do
24 cp -rT "${resource:-.}" "${destination}"\
25 - || die "Could copy resources to ${destination}"
26 + || die "Could not copy resources from ${resource:-.} to ${destination}"
27 done
28 }