summaryrefslogtreecommitdiff
path: root/bazel
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-06-11 16:54:02 -0700
committerJoshua Haberman <jhaberman@gmail.com>2019-06-11 16:54:02 -0700
commit75d680d7b05a616bf2e69fd231d11688225f13bf (patch)
tree4c0c9c76e4b3dec47c5de4dbdbd3c78fdbc21717 /bazel
parent57a63d4c7b524da782c02dd85abf3ec314a916a1 (diff)
Small fix to upb_proto_library().
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 0c23f73..503925e 100644
--- a/bazel/upb_proto_library.bzl
+++ b/bazel/upb_proto_library.bzl
@@ -38,7 +38,7 @@ def _get_real_roots(files):
def _generate_output_file(ctx, src, extension):
real_short_path = _get_real_short_path(src)
- real_short_path = paths.relativize(src.short_path, ctx.label.package)
+ real_short_path = paths.relativize(real_short_path, ctx.label.package)
output_filename = paths.replace_extension(real_short_path, extension)
ret = ctx.actions.declare_file(output_filename)
return ret
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback