~ chicken-core (chicken-5) d15621b38c98d11f919de98409a93e14e3ba8343
commit d15621b38c98d11f919de98409a93e14e3ba8343 Author: Peter Bex <peter@more-magic.net> AuthorDate: Wed Jun 19 17:32:43 2019 +0200 Commit: Peter Bex <peter@more-magic.net> CommitDate: Wed Jun 19 17:32:43 2019 +0200 Use 5.1.0 to bootstrap CHICKEN from git instead of dev snapshot diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 7d06cbd9..604f855a 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -2,13 +2,13 @@ set -e -# build 5.0.2 development snapshot +# build 5.1.0 release mkdir -p boot/snapshot cd boot -wget https://code.call-cc.org/dev-snapshots/2019/05/02/chicken-5.0.2.tar.gz -tar -xzf chicken-5.0.2.tar.gz -cd chicken-5.0.2 +wget https://code.call-cc.org/releases/5.1.0/chicken-5.1.0.tar.gz +tar -xzf chicken-5.1.0.tar.gz +cd chicken-5.1.0 make "$@" PREFIX="$(pwd)"/../snapshot make "$@" PREFIX="$(pwd)"/../snapshot install cd ../.. @@ -21,8 +21,8 @@ make "$@" CHICKEN="$(pwd)"/boot/snapshot/bin/chicken boot-chicken # remove snapshot installation and tarball rm -fr boot/snapshot -rm -fr boot/chicken-5.0.2 -rm -f boot/chicken-5.0.2.tar.gz +rm -fr boot/chicken-5.1.0 +rm -f boot/chicken-5.1.0.tar.gz echo echo 'Now, build chicken by passing "CHICKEN=./chicken-boot" to make,'Trap