#!/bin/sh
#
# getXManPath - return the path for X application man pages
#

# A sensible default would be in the man directory under the X11 root.
# however it's not always there! Here we do the default and allow overrides
# to specify otherwise.


XROOT=`getXRootPath`
XROOT=`deReference $XROOT`

echo $XROOT/man

