lib/scripts/getsettings
author wenzelm
Thu, 06 Mar 1997 12:30:32 +0100
changeset 2736 476adc742599
parent 2643 a7f469c0ba59
child 2968 8ba30b031f31
permissions -rw-r--r--
added ISABELLE_HOME normalization;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2307
508d2a233dbc *** empty log message ***
wenzelm
parents: 2299
diff changeset
     1
#
508d2a233dbc *** empty log message ***
wenzelm
parents: 2299
diff changeset
     2
# $Id$
2299
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
     3
#
2348
b51e104ecf40 *** empty log message ***
wenzelm
parents: 2307
diff changeset
     4
# getsettings - bash source script to augment current env.
2299
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
     5
#
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
     6
2736
476adc742599 added ISABELLE_HOME normalization;
wenzelm
parents: 2643
diff changeset
     7
#normalize ISABELLE_HOME as passed by caller
2299
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
     8
export ISABELLE_HOME
2736
476adc742599 added ISABELLE_HOME normalization;
wenzelm
parents: 2643
diff changeset
     9
ISABELLE_HOME=$(cd $ISABELLE_HOME; echo $PWD)
476adc742599 added ISABELLE_HOME normalization;
wenzelm
parents: 2643
diff changeset
    10
2299
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
    11
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
    12
set -o allexport
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
    13
2643
a7f469c0ba59 tuned comments;
wenzelm
parents: 2621
diff changeset
    14
#users tend to put strange things in here ...
2621
e9e491033b54 globally unset ENV, BASH_ENV;
wenzelm
parents: 2590
diff changeset
    15
unset ENV
e9e491033b54 globally unset ENV, BASH_ENV;
wenzelm
parents: 2590
diff changeset
    16
unset BASH_ENV
e9e491033b54 globally unset ENV, BASH_ENV;
wenzelm
parents: 2590
diff changeset
    17
2590
363b2c37a1b9 integrated getplatform stuff;
wenzelm
parents: 2478
diff changeset
    18
#get bash-style platform info -- has to work around some tricky features
363b2c37a1b9 integrated getplatform stuff;
wenzelm
parents: 2478
diff changeset
    19
unset HOSTTYPE
363b2c37a1b9 integrated getplatform stuff;
wenzelm
parents: 2478
diff changeset
    20
unset OSTYPE
2621
e9e491033b54 globally unset ENV, BASH_ENV;
wenzelm
parents: 2590
diff changeset
    21
PLATFORM=$(bash -norc -c 'echo $HOSTTYPE-$OSTYPE')
2590
363b2c37a1b9 integrated getplatform stuff;
wenzelm
parents: 2478
diff changeset
    22
2643
a7f469c0ba59 tuned comments;
wenzelm
parents: 2621
diff changeset
    23
#get actual settings
2428
853732a26bdd improved error handling;
wenzelm
parents: 2348
diff changeset
    24
. $ISABELLE_HOME/etc/settings || exit 2
2299
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
    25
[ -f $ISABELLE_HOME_USER/etc/settings ] && . $ISABELLE_HOME_USER/etc/settings
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
    26
2736
476adc742599 added ISABELLE_HOME normalization;
wenzelm
parents: 2643
diff changeset
    27
#derived values
2478
adbd622bb375 added ISABELLE, ISATOOL;
wenzelm
parents: 2428
diff changeset
    28
ISABELLE=$ISABELLE_HOME/bin/isabelle
adbd622bb375 added ISABELLE, ISATOOL;
wenzelm
parents: 2428
diff changeset
    29
ISATOOL=$ISABELLE_HOME/bin/isatool
2590
363b2c37a1b9 integrated getplatform stuff;
wenzelm
parents: 2478
diff changeset
    30
ISABELLE_OUTPUT_DIR="$ISABELLE_OUTPUT/$ML_SYSTEM-$PLATFORM"
2478
adbd622bb375 added ISABELLE, ISATOOL;
wenzelm
parents: 2428
diff changeset
    31
2299
ed9720047d53 getsettings: bash source script to augment current env.
wenzelm
parents:
diff changeset
    32
set +o allexport