Skip to content

Commit 06eaca6

Browse files
committed
fix ppx_module options
1 parent 882c0a6 commit 06eaca6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ocaml/_rules/options.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def options_module(ws):
262262
),
263263
_ns_strategy = attr.label(
264264
doc = "Experimental",
265-
default = ws + "//ns:strategy"
265+
default = "@ocaml//ns:strategy"
266266
),
267267
)
268268

@@ -393,7 +393,7 @@ def options_ns_resolver(ws):
393393
),
394394
_ns_strategy = attr.label(
395395
doc = "Experimental",
396-
default = ws + "//ns:strategy"
396+
default = "@ocaml//ns:strategy"
397397
),
398398
_ns_submodules = attr.label( # _list(
399399
default = ws + "//ns:submodules", # => string_list_setting

ocaml/_rules/ppx_module.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ load("//ocaml/_transitions:transitions.bzl",
1515

1616
################################
1717
rule_options = options("ocaml")
18-
rule_options.update(options_module("ocaml"))
18+
rule_options.update(options_module("ppx"))
1919
rule_options.update(options_ns_opts("ocaml"))
2020
rule_options.update(options_ppx)
2121

0 commit comments

Comments
 (0)