aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA Googler <no-reply@google.com>2023-09-26 10:49:53 -0700
committerCopybara-Service <copybara-worker@google.com>2023-09-26 10:50:41 -0700
commit9f019bd742c4af6f67f14ce67f6d3c80f25a0de2 (patch)
tree6b5c8b2cac3e5266087af559003655f7aec5dee5
parent7c5a2bd3cc900885a19e72b8fc716449547fac27 (diff)
downloadbazelbuild-rules_android-9f019bd742c4af6f67f14ce67f6d3c80f25a0de2.tar.gz
Fix minor bug in failure message.
PiperOrigin-RevId: 568587666 Change-Id: Ib083c43eccb170309e93d7e9be541fb40125c81f
-rw-r--r--rules/native_deps.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/native_deps.bzl b/rules/native_deps.bzl
index 4c90b50..3a83e7b 100644
--- a/rules/native_deps.bzl
+++ b/rules/native_deps.bzl
@@ -179,7 +179,7 @@ def _filter_unique_shared_libs(linked_libs, cc_info):
"Each library in the transitive closure must have a " +
"unique basename to avoid name collisions when packaged into " +
"an apk, but two libraries have the basename '" + basename +
- "': " + artifact + " and " + old_artifact + (
+ "': " + str(artifact) + " and " + str(old_artifact) + (
" (the library already seen by this target)" if old_artifact in linked_libs else ""
),
)