#!/bin/sh
#
# getInstallMan - Get the path used to install the apps man page files
#

INSTALL_ROOT=`getInstallRoot`

# Default is /usr/local/man, but install root is often changed

# You can override this script if you want to put the apps man
# files elsewhere

echo "$INSTALL_ROOT/man"
