Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 01 Oct 2019 14:52:37
Message-Id: 1569941494.ca6797c76af979e8e863494ae00546ed820c25e7.perfinion@gentoo
1 commit: ca6797c76af979e8e863494ae00546ed820c25e7
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 1 14:29:15 2019 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 1 14:51:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6797c7
7
8 bazel.eclass: fix info message order
9
10 The src and dst were swapped.
11
12 Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
13
14 eclass/bazel.eclass | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/eclass/bazel.eclass b/eclass/bazel.eclass
18 index 4eacb75776e..7c5f92977ba 100644
19 --- a/eclass/bazel.eclass
20 +++ b/eclass/bazel.eclass
21 @@ -193,7 +193,7 @@ bazel_load_distfiles() {
22 elif [[ ${rename} -eq 1 ]]; then
23 # Make sure the distfile is used
24 if [[ "${A}" == *"${word}"* ]]; then
25 - echo "Copying ${file} to bazel distdir as ${word}"
26 + echo "Copying ${word} to bazel distdir as ${file}"
27 ln -s "${DISTDIR}/${word}" "${T}/bazel-distdir/${file}" || die
28 fi
29 rename=0