lib/scripts/getsettings
author wenzelm
Thu, 17 Apr 1997 10:30:57 +0200
changeset 2968 8ba30b031f31
parent 2736 476adc742599
child 3118 24dae6222579
permissions -rw-r--r--
eliminated PLATFORM;

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

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


set -o allexport

#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

#derived values
ISABELLE=$ISABELLE_HOME/bin/isabelle
ISATOOL=$ISABELLE_HOME/bin/isatool

set +o allexport