Dear Maintainer,
I installed the erlang package on an Debian bullseye docker container to perform the following escript:
```
#!/usr/bin/env escript
%% -*- erlang -*-
%%! -sname edts-helper
main(["release", ReleaseConfig]) ->
{ok, Conf} = file:consult(ReleaseConfig),
{ok, Spec} = reltool:get_target_spec(Conf),
reltool:eval_target_spec(Spec, code:root_dir(), "rel");
```
This failed with `"read file info /usr/lib/erlang/man/man3/LIST_EMPTY.3 failed"}`
Investigating I realized it was because there was broken symlinks that `erlang-mode` installed.
```
root@10759c6aee0e:/usr/lib/erlang/man# find . -xtype l
./man3/LIST_EMPTY.3
./man3/LIST_ENTRY.3
./man3/LIST_FIRST.3
./man3/LIST_FOREACH.3
./man3/LIST_HEAD.3
./man3/LIST_HEAD_INITIALIZER.3
./man3/LIST_INIT.3
./man3/LIST_INSERT_AFTER.3
./man3/LIST_INSERT_BEFORE.3
./man3/LIST_INSERT_HEAD.3
./man3/LIST_NEXT.3
./man3/LIST_REMOVE.3
```
They all point to non-existing `man3/list.3`
After installing `erlang-manpages` I got a file called `lists.3erl.gz` but the links are sadly still broken.
If I remove the package `erlang-mode` the escript works.
Best regards