On 8/11/24 2:47 PM, Carlos E. R. wrote:
On 2024-08-11 04:56, David C. Rankin wrote:
On 8/10/24 8:56 PM, Masaru Nomiya wrote:
How about this?
$ man createrepo_c
Yes, thank you Masaru!
That works just fine, but that misses the point. The point being that both:
/usr/share/man/man8/createrepo.8.gz /usr/share/man/man8/createrepo_c.8.gz
are included in the rpm so you can access the man page through either "createrepo" or "createrepo_c", the access through "createrepo" is broken.
I don't know what it's contents is supposed to be, so I'm asking here in case somebody else knows so I can include that in the bug-report. I haven't dealt with linked man pages before.
If there is a symlink the content will be absolutely the same.
It's not a symlink. I think the problem is the stray backslash before the underscore: ``` $ zcat /usr/share/man/man8/createrepo.8.gz .so man8/createrepo\_c.8 ``` If I change it to ``` .so man8/createrepo_c.8 ``` the link works for me.