summaryrefslogtreecommitdiff
path: root/bazel
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2019-07-22 22:25:13 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2019-07-22 22:25:13 +0200
commit6e85c2bf036c4a18a45224dd9d929ab3639e67f3 (patch)
tree10ade5c9b89efd6889c0b116694f8d4548258590 /bazel
parent9605c7093c269a4767b9c4a57e2ca021c725644d (diff)
Fixing the separator string.
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 ab8b409..528d34b 100644
--- a/bazel/upb_proto_library.bzl
+++ b/bazel/upb_proto_library.bzl
@@ -159,7 +159,7 @@ def _compile_upb_protos(ctx, proto_info, proto_sources, ext):
arguments = [
"--upb_out=" + _get_real_root(srcs[0]),
"--plugin=protoc-gen-upb=" + ctx.executable._upbc.path,
- "--descriptor_set_in=" + ":".join([f.path for f in transitive_sets]),
+ "--descriptor_set_in=" + ctx.configuration.host_path_separator.join([f.path for f in transitive_sets]),
] +
[_get_real_short_path(file) for file in proto_sources],
progress_message = "Generating upb protos for :" + ctx.label.name,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback