lib/scripts/configure
author kleing
Wed, 20 Jul 2005 07:40:23 +0200
changeset 16895 df67fc190e06
parent 16477 e1a36498a30f
permissions -rwxr-xr-x
Sort search results in order of relevance, where relevance = a) better if 0 premises for intro or 1 premise for elim/dest rules b) better if substitution size wrt to current goal is smaller Only applies to intro, dest, elim, and simp (contributed by Rafal Kolanski, NICTA)
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