diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-25 14:17:48 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-25 14:17:48 +0200 |
commit | 879a40d7a6c56bb9b369d4553255c538a3d80e06 (patch) | |
tree | bfb5bce451fd4083b8faaa2cc6059b3dee3eb9b1 /stage | |
parent | c92bdb935c34f9bd108ba3f7d388c48bd9ba045f (diff) |
Update stage scripts (install scripts, forwarded configurations)
Diffstat (limited to 'stage')
-rwxr-xr-x | stage | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -160,19 +160,26 @@ checksum_line "build2-mingw-$v-x86_64-windows.tar.xz" #checksum_line "build2-baseutils-$v-i686-windows.zip" #checksum_line "build2-mingw-$v-i686-windows.tar.xz" -# Prepare install script/batch files. +# Prepare install script/batch files and then append their checksums to +# toolchain.sha256. # case "$mode" in -q) o=--queue ;; -p) o= ;; *) o=--stage ;; esac -private/install/prepare "$o" "$dist_src" + +scripts=($(private/install/prepare "$o" "$dist_src")) + +for f in "${scripts[@]}"; do + checksum_line "$f" +done if [ "$mode" = "-p" ]; then exit 0 fi + # Sync the distribution. # # Note that we do the distribution first so that the toolchain changes are |