#!/bin/sh
#
# Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"$Revision: 1.3 $	SMI"
#

# This may be an old version of Solaris. In the latest Solaris
# CLIENT_BASEDIR won't be defined yet. In older version it is.
if [ -n "${CLIENT_BASEDIR}" ]
then
    #BASEDIR already include 'INSTALL_ROOT' if defined
    INSTALLATION_BASE=$BASEDIR
else
    # The base directory hasn't been processed yet
    INSTALLATION_BASE=${PKG_INSTALL_ROOT}$BASEDIR
fi



