#
# usage:        abort.sh
#
# abstract:     This Bourne Shell script prints out an abort message and
#		exits.
#
# note(s):      1. This routine must be called using a . (period)
#
# Copyright (c) 1992-1997 by The MathWorks, Inc.
# $Revision: 1.11 $  $Date: 1997/07/10 03:11:05 $
#
#----------------------------------------------------------------------------
#
    . $dir/$cleanup_sh
    if [ "$CD_ROOT" = "" ]; then
#------------------------------------------------------------------------------
    echo ''
    echo '    Sorry! install_matlab aborted . . .'
    echo ''
#------------------------------------------------------------------------------
    fi
    exit 1
