diff options
author | Jason Zaman <perfinion@gentoo.org> | 2019-10-01 22:29:15 +0800 |
---|---|---|
committer | Jason Zaman <perfinion@gentoo.org> | 2019-10-01 22:51:34 +0800 |
commit | ca6797c76af979e8e863494ae00546ed820c25e7 (patch) | |
tree | 3085ed37a7e0be9cb3a3cb09c8746cd9d22cb26d /eclass/bazel.eclass | |
parent | app-emacs/pov-mode: Update HOMEPAGE. (diff) | |
download | gentoo-ca6797c76af979e8e863494ae00546ed820c25e7.tar.gz gentoo-ca6797c76af979e8e863494ae00546ed820c25e7.tar.bz2 gentoo-ca6797c76af979e8e863494ae00546ed820c25e7.zip |
bazel.eclass: fix info message order
The src and dst were swapped.
Signed-off-by: Jason Zaman <perfinion@gentoo.org>
Diffstat (limited to 'eclass/bazel.eclass')
-rw-r--r-- | eclass/bazel.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/bazel.eclass b/eclass/bazel.eclass index 4eacb75776e4..7c5f92977ba5 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 |