~ chicken-core (chicken-5) 18f8904c6b69af2f36498c3ef8f9db88e59d7644
commit 18f8904c6b69af2f36498c3ef8f9db88e59d7644
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Sat Feb 24 16:58:35 2018 +0100
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Sat Feb 24 16:58:35 2018 +0100
Update bootstrap script to use 5.0.0pre5
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh
index b781b72d..a0ae3c4e 100755
--- a/scripts/bootstrap.sh
+++ b/scripts/bootstrap.sh
@@ -2,18 +2,18 @@
set -e
-# build 5.0.0pre4 development snapshot
+# build 5.0.0pre5 development snapshot
-mkdir -p boot/pre4
+mkdir -p boot/pre5
cd boot
-wget http://code.call-cc.org/dev-snapshots/2017/12/14/chicken-5.0.0pre4.tar.gz
-tar -xzf chicken-5.0.0pre4.tar.gz
-cd chicken-5.0.0pre4
-make "$@" PREFIX="$(pwd)"/../pre4
-make "$@" PREFIX="$(pwd)"/../pre4 install
+wget http://code.call-cc.org/dev-snapshots/2018/02/24/chicken-5.0.0pre5.tar.gz
+tar -xzf chicken-5.0.0pre5.tar.gz
+cd chicken-5.0.0pre5
+make "$@" PREFIX="$(pwd)"/../pre5
+make "$@" PREFIX="$(pwd)"/../pre5 install
cd ../..
-# build a boot-chicken from git head using pre4 chicken and
+# build a boot-chicken from git head using pre5 chicken and
# then use that to build the real thing
#
# baf6363e535b26a67d0b9a7d71a93d8deb5de8c6 hardcodes
@@ -21,12 +21,12 @@ cd ../..
# a boot-chicken needs to be built.
make "$@" spotless
-make "$@" CHICKEN="$(pwd)"/boot/pre4/bin/chicken boot-chicken
+make "$@" CHICKEN="$(pwd)"/boot/pre5/bin/chicken boot-chicken
-# remove pre4 installation and tarball
-rm -fr boot/pre4
-rm -fr boot/chicken-5.0.0pre4
-rm -f boot/chicken-5.0.0pre4.tar.gz
+# remove pre5 installation and tarball
+rm -fr boot/pre5
+rm -fr boot/chicken-5.0.0pre5
+rm -f boot/chicken-5.0.0pre5.tar.gz
echo
echo 'Now, build chicken by passing "CHICKEN=./chicken-boot" to make,'
Trap