Fix jar entry paths to be canonical

e.g.
gerrit-antlr/src/main/antlr3/com/google/gerrit/server/query/QueryLexer.java
instead of:
./gerrit-antlr/src/main/antlr3/com/google/gerrit/server/query/QueryLexer.java

Change-Id: I256cfcd68fb3ef454462cf47ddac09f3525bf427
This commit is contained in:
Liam Miller-Cushon 2017-01-17 10:38:23 -08:00
parent 1fcc4ecd64
commit 131f58f742
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ genrule2(
cmd = " && ".join([
"$(location //lib/antlr:antlr-tool) -o $$TMP $<",
"cd $$TMP",
"$$ROOT/$(location @bazel_tools//tools/zip:zipper) cC $$ROOT/$@ $$(find .)",
"$$ROOT/$(location @bazel_tools//tools/zip:zipper) cC $$ROOT/$@ $$(find *)",
]),
tools = [
"//lib/antlr:antlr-tool",