#!/bin/sh
#
# getInstallLib - Get the lib path used to install app library files
#

INSTALL_ROOT=`getInstallRoot`

# Default for solaris is in /usr/openwin/lib/X11/$APP_NAME


APP_NAME=`getAppName`

if [ "$INSTALL_ROOT" != "/usr/openwin" ]
then
    echo "$INSTALL_ROOT/lib/$APP_NAME"
else
    echo "/usr/openwin/lib/X11/$APP_NAME"
fi
