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

INSTALL_ROOT=`getInstallRoot`

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

if [ "$INSTALL_ROOT" = "/usr/openwin" ]
then
    echo "/usr/openwin/share/man"
else
    echo "$INSTALL_ROOT/man"
fi
