summaryrefslogtreecommitdiff
path: root/bazel
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2019-07-19 00:46:17 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2019-07-19 00:46:17 +0200
commit9605c7093c269a4767b9c4a57e2ca021c725644d (patch)
treed1a136742a038b0663009386fd1340952bfe6bfe /bazel
parentce3ba4dcdcd34d85672d93bd552e8bc871f02b53 (diff)
Revert previous fix - to_list() is too new, or...?
Diffstat (limited to 'bazel')
-rw-r--r--bazel/upb_proto_library.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bazel/upb_proto_library.bzl b/bazel/upb_proto_library.bzl
index d62770b..ab8b409 100644
--- a/bazel/upb_proto_library.bzl
+++ b/bazel/upb_proto_library.bzl
@@ -175,7 +175,7 @@ def _upb_proto_rule_impl(ctx):
"_WrappedGeneratedSrcsInfo (aspect should have handled this).")
cc_info = dep[_WrappedCcInfo].cc_info
srcs = dep[_WrappedGeneratedSrcsInfo].srcs
- lib = cc_info.linking_context.libraries_to_link.to_list()[0]
+ lib = cc_info.linking_context.libraries_to_link[0]
files = _filter_none([
lib.static_library,
lib.pic_static_library,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback