Actions
Bug #12692
closedtmux: should install mdoc man page
Start date:
2020-05-16
Due date:
2020-05-16
% Done:
100%
Estimated time:
Difficulty:
Bite-size
Tags:
Description
There's the following weirdness in configure(.ac) that makes us use man(5) one and it's rendered badly anyway:
*solaris*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: sunos" >&5 $as_echo "sunos" >&6; } PLATFORM=sunos case `/usr/bin/nroff --version 2>&1` in *GNU*) # Solaris 11.4 and later use GNU groff. MANFORMAT=mdoc ;; *) # Solaris 2.0 to 11.3 use AT&T nroff. MANFORMAT=man ;; esac ;;
That nested case
needs to go. While here, we might as well stop adding the useless noise to man page (download location and stuff).
Updated by Aurélien Larcher about 2 years ago
Updated by Aurélien Larcher about 2 years ago
- Due date set to 2020-05-16
- Category set to OI-Userland
- Status changed from New to Resolved
- Assignee set to Aurélien Larcher
- Target version changed from 2019.10 to 2020.10
- Start date set to 2020-05-16
- % Done changed from 0 to 100
- Difficulty changed from Medium to Bite-size
Fixed in PR 5747
Actions