lib/scripts/getsettings
author paulson
Wed, 25 Nov 1998 15:54:41 +0100
changeset 5971 c5a7a7685826
parent 3185 7a6c933d51d0
child 6413 b2f2770ef8d9
permissions -rw-r--r--
simplified ensures_UNIV

#
# $Id$
#
# getsettings - bash source script to augment current env.
#

set -o allexport

#normalize ISABELLE_HOME as passed by caller
ISABELLE_HOME=$(cd $ISABELLE_HOME; echo $PWD)

#main executables
ISABELLE=$ISABELLE_HOME/bin/isabelle
ISATOOL=$ISABELLE_HOME/bin/isatool

#users tend to put strange things in here ...
unset ENV
unset BASH_ENV

#get actual settings
. $ISABELLE_HOME/etc/settings || exit 2
[ -f $ISABELLE_HOME_USER/etc/settings ] && . $ISABELLE_HOME_USER/etc/settings

#append ML system to paths
ISABELLE_OUTPUT="$ISABELLE_OUTPUT/$ML_SYSTEM"
ISABELLE_PATH=$(for DIR in $(echo $ISABELLE_PATH | tr : " "); do echo $DIR/$ML_SYSTEM; done)
ISABELLE_PATH=$(echo $ISABELLE_PATH | tr " " :)

set +o allexport