-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Etienne Millon <me@emillon.org>
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
We create two libraries `l.one` and `l.two` with a conflicting module. | ||
They build fine, are not co-linkable, but documentation should be able to be | ||
built. See #1645. | ||
|
||
$ cat > dune-project << EOF | ||
> (lang dune 1.0) | ||
> (package (name l)) | ||
> EOF | ||
|
||
$ mkdir one | ||
$ cat > one/dune << EOF | ||
> (library | ||
> (name l_one) | ||
> (public_name l.one) | ||
> (wrapped false)) | ||
> EOF | ||
$ touch one/module.ml | ||
|
||
$ mkdir two | ||
$ cat > two/dune << EOF | ||
> (library | ||
> (name l_two) | ||
> (public_name l.two) | ||
> (wrapped false)) | ||
> EOF | ||
$ touch two/module.ml | ||
|
||
$ dune build @install | ||
$ dune build @doc | ||
Error: Multiple rules generated for | ||
_build/default/_doc/_html/l/Module/.dummy: | ||
- <internal location> | ||
- <internal location> | ||
-> required by alias _doc/_html/l/doc | ||
-> required by alias doc | ||
Error: Multiple rules generated for | ||
_build/default/_doc/_odocls/l/module.odocl: | ||
- <internal location> | ||
- <internal location> | ||
-> required by _build/default/_doc/_html/l/index.html | ||
-> required by alias _doc/_html/l/doc | ||
-> required by alias doc | ||
[1] |