lib/scripts/configure
author obua
Tue, 13 Sep 2005 17:05:59 +0200
changeset 17335 7cff05c90a0e
parent 16477 e1a36498a30f
permissions -rwxr-xr-x
fixed INST: has same semantic now as INST_TYPE for repetitions
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16477
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     1
#!/bin/sh
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     2
#
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     3
# $Id$
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     4
# Author: Markus Wenzel, TU Muenchen
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     5
#
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     6
# configure - adapt Isabelle distribution to system environment
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     7
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     8
## patch scripts
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
     9
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    10
cd "`dirname "$0"`"
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    11
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    12
if bash -c :
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    13
then
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    14
  bash lib/scripts/patch-scripts.bash
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    15
else
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    16
  echo "FATAL ERROR: bash not found!"
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    17
  exit 2
e1a36498a30f moved configure to lib/scripts;
wenzelm
parents:
diff changeset
    18
fi