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