commit: ca6797c76af979e8e863494ae00546ed820c25e7
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 1 14:29:15 2019 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Tue Oct 1 14:51:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6797c7
bazel.eclass: fix info message order
The src and dst were swapped.
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
eclass/bazel.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/bazel.eclass b/eclass/bazel.eclass
index 4eacb75776e..7c5f92977ba 100644
--- a/eclass/bazel.eclass
+++ b/eclass/bazel.eclass
@@ -193,7 +193,7 @@ bazel_load_distfiles() {
elif [[ ${rename} -eq 1 ]]; then
# Make sure the distfile is used
if [[ "${A}" == *"${word}"* ]]; then
- echo "Copying ${file} to bazel distdir as
${word}"
+ echo "Copying ${word} to bazel distdir as
${file}"
ln -s "${DISTDIR}/${word}"
"${T}/bazel-distdir/${file}" || die
fi
rename=0