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

INSTALL_ROOT=`getInstallRoot`

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

# You can override this script if you want to put the app run time
# files elsewhere

APP_NAME=`getAppName`

echo "$INSTALL_ROOT/lib/$APP_NAME"
