Merge pull request #182 from haberman/bazelfix

Fixed upb_proto_library() logic for calculating output dir.
pull/13171/head
Joshua Haberman 6 years ago committed by GitHub
commit ef6ce94bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      bazel/upb_proto_library.bzl

@ -37,10 +37,8 @@ def _get_real_roots(files):
return roots.keys()
def _generate_output_file(ctx, src, extension):
if _is_bazel:
real_short_path = _get_real_short_path(src)
else:
real_short_path = paths.relativize(src.short_path, ctx.label.package)
real_short_path = _get_real_short_path(src)
real_short_path = paths.relativize(src.short_path, ctx.label.package)
output_filename = paths.replace_extension(real_short_path, extension)
ret = ctx.actions.declare_file(output_filename)
return ret

Loading…
Cancel
Save