mirror of
https://github.com/tmux/tmux.git
synced 2025-01-23 06:03:43 +00:00
Use mdoc on Illumos which uses mandoc, from Andy Fiddaman.
This commit is contained in:
parent
c773fe89e7
commit
171004dfd0
@ -926,8 +926,13 @@ case "$host_os" in
|
||||
MANFORMAT=mdoc
|
||||
;;
|
||||
*)
|
||||
# Solaris 2.0 to 11.3 use AT&T nroff.
|
||||
MANFORMAT=man
|
||||
if test `uname -o 2>/dev/null` = illumos; then
|
||||
# Illumos uses mandoc.
|
||||
MANFORMAT=mdoc
|
||||
else
|
||||
# Solaris 2.0 to 11.3 use AT&T nroff.
|
||||
MANFORMAT=man
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user