The source project of this merge request has been removed.
Add missing `less` dependency
Currently the default pager used is picked up depending on the environment that the package is built in, in this case it detects that less
is installed and defaults to that (else it falls back to more
).
The exact logic seems to be ENV{MANPAGER}
-> ENV{PAGER}
-> BINM_PAGER
, so when less
isn't installed and neither environment variables are set, man
just fails.
Edited by Michael Ferrari