summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-05-07 14:45:12 -0700
committerJoshua Haberman <jhaberman@gmail.com>2019-05-07 14:45:12 -0700
commit61034f50b336fea900b2fa02b4283d4ee078a3d6 (patch)
tree61c7652814671d7bf468145469930c0f72e7ff01
parent6c1b78f09553ca14b20fcab070b1f730260838ed (diff)
Fixed conflict error with Ragel on Bazel 0.25.
-rw-r--r--BUILD4
-rw-r--r--ragel.BUILD2
2 files changed, 3 insertions, 3 deletions
diff --git a/BUILD b/BUILD
index 629287c..2f03ae3 100644
--- a/BUILD
+++ b/BUILD
@@ -543,8 +543,8 @@ genrule(
name = "generate_json_ragel",
srcs = ["upb/json/parser.rl"],
outs = ["upb/json/parser.c"],
- cmd = "$(location @ragel//:ragel) -C -o upb/json/parser.c $< && mv upb/json/parser.c $@",
- tools = ["@ragel"],
+ cmd = "$(location @ragel//:ragelc) -C -o upb/json/parser.c $< && mv upb/json/parser.c $@",
+ tools = ["@ragel//:ragelc"],
)
genrule(
diff --git a/ragel.BUILD b/ragel.BUILD
index 5485fab..5e3b249 100644
--- a/ragel.BUILD
+++ b/ragel.BUILD
@@ -4,7 +4,7 @@ package(
)
cc_binary(
- name = "ragel",
+ name = "ragelc",
srcs = [
"ragel/rubycodegen.cpp",
"ragel/goipgoto.h",
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback