From: Jason Zaman Date: Tue, 1 Oct 2019 14:29:15 +0000 (+0800) Subject: bazel.eclass: fix info message order X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=ca6797c76af979e8e863494ae00546ed820c25e7;p=gentoo.git bazel.eclass: fix info message order The src and dst were swapped. Signed-off-by: Jason Zaman --- 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