28 lines
464 B
Raku
28 lines
464 B
Raku
%{bin-available:...} should work without causing a dependency cycle in this
|
|
situation. See #9187.
|
|
|
|
$ cat > dune-project << EOF
|
|
> (lang dune 3.10)
|
|
>
|
|
> (package
|
|
> (name p))
|
|
> EOF
|
|
|
|
$ cat > dune << EOF
|
|
> (executable
|
|
> (public_name e)
|
|
> (package p))
|
|
>
|
|
> (library
|
|
> (package p)
|
|
> (name l)
|
|
> (modules))
|
|
>
|
|
> (rule
|
|
> (enabled_if %{bin-available:e})
|
|
> (action
|
|
> (write-file aa x)))
|
|
> EOF
|
|
$ touch e.ml
|
|
|
|
$ dune build
|