bazel.eclass: fix info message order

The src and dst were swapped.

Signed-off-by: Jason Zaman <perfinion@gentoo.org>
This commit is contained in:
Jason Zaman
2019-10-01 22:29:15 +08:00
parent 09c0c59055
commit ca6797c76a

View File

@@ -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