I used man(1) for uncompressed catpages. It hangs. How to repeat: $ mkdir man man/cat1 man/man1 $ man cat > man/cat1/cat.1 $ man -M man cat [ it hangs, and waiting for user input. press ^D to continue ] Workaround: always compress catpages $ gzip man/cat1/cat.1 $ man -M man cat
A commit references this bug: Author: bapt Date: Mon Dec 4 12:33:46 UTC 2017 New revision: 326526 URL: https://svnweb.freebsd.org/changeset/base/326526 Log: In case man(1) found a catpage to display skip looking ".so" which is manpage only. In case we are trying to read a catpage, the manpage variable is not defined. It results in the "cattool" having no arguments. In case the catpage is compressed, the cattool used is "zcat" which dies if the standard input is a terminal, meaning the function calling it is exiting as if there were no ".so" In case the catpage is uncompressed, the cattool used is "zcat -f" which waits reading standard input, making the man(1) command hang. PR: 223560 Reported by: wosch MFC after: 3 days Changes: head/usr.bin/man/man.sh
*** Bug 223558 has been marked as a duplicate of this bug. ***
*** Bug 163219 has been marked as a duplicate of this bug. ***
A commit references this bug: Author: bapt Date: Fri Dec 8 10:42:06 UTC 2017 New revision: 326685 URL: https://svnweb.freebsd.org/changeset/base/326685 Log: MFC r326526: In case man(1) found a catpage to display skip looking ".so" which is manpage only. In case we are trying to read a catpage, the manpage variable is not defined. It results in the "cattool" having no arguments. In case the catpage is compressed, the cattool used is "zcat" which dies if the standard input is a terminal, meaning the function calling it is exiting as if there were no ".so" In case the catpage is uncompressed, the cattool used is "zcat -f" which waits reading standard input, making the man(1) command hang. PR: 223560 Reported by: wosch Changes: _U stable/11/ stable/11/usr.bin/man/man.sh
A commit references this bug: Author: bapt Date: Fri Dec 8 10:44:45 UTC 2017 New revision: 326686 URL: https://svnweb.freebsd.org/changeset/base/326686 Log: MFC r326526: In case man(1) found a catpage to display skip looking ".so" which is manpage only. In case we are trying to read a catpage, the manpage variable is not defined. It results in the "cattool" having no arguments. In case the catpage is compressed, the cattool used is "zcat" which dies if the standard input is a terminal, meaning the function calling it is exiting as if there were no ".so" In case the catpage is uncompressed, the cattool used is "zcat -f" which waits reading standard input, making the man(1) command hang. PR: 223560 Reported by: wosch Changes: _U stable/10/ stable/10/usr.bin/man/man.sh