#!/bin/sh
#
# getInstallLog - Get the path used for the install log file
#

if [ -z "$LIBDIR" ]
then
     INSTALL_LIB=`getInstallLib`
else
     INSTALL_LIB="$LIBDIR"
fi

# You can override this script if you want to put the log
# file elsewhere

echo "$INSTALL_ROOT$PREFIX$INSTALL_LIB/installLog"
