~ chicken-core (chicken-5) /tests/bootstrap.sh


 1# bootstrap.sh 
 2
 3set -e
 4
 5echo "======================================== bootstrapping ..."
 6darcs dist
 7rm -fr /tmp/chicken
 8cp chicken.tar.gz /tmp
 9pushd /tmp
10tar xfz chicken.tar.gz
11cd chicken
12sh autogen.sh
13./configure --disable-shared --prefix=`pwd`/chicken-install
14installed_chicken=`which chicken`
15make BOOTSTRAP_PATH=`dirname $installed_chicken`
16touch *.scm
17make
18rm -fr /tmp/chicken
19
20echo "======================================== done."
Trap