diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-16 16:23:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-16 16:23:18 +0200 |
commit | fef268e15971015c126232b0d5a0a4fbfc629cbe (patch) | |
tree | 963e09bdcffac187fdc8db5c1afe79eea2c3dc7a /stage | |
parent | d522c01d87bf31b237e322319da290ee3860e3b8 (diff) |
Call install script preparation from stage
Diffstat (limited to 'stage')
-rwxr-xr-x | stage | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -7,10 +7,11 @@ # -o # Only package baseutils/mingw. # -q -# Put packages into the queue instead of staging. +# Put packages into the queue instead of staging. Used to update for +# queue. # -p # Regenerate build2-toolchain into queue's 0/ and update the checksums file -# but don't do anything else. +# but don't do anything else. Used to update for public. # usage="usage: etc/stage" @@ -118,6 +119,9 @@ if [ "$only" = true ]; then exit 0 fi +## +##if false; then + mkdir -p /tmp/dist # Dist build2-toolchain. @@ -156,6 +160,15 @@ 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. +# +case "$mode" in + -q) o=--queue ;; + -p) o= ;; + *) o=--stage ;; +esac +private/install/prepare "$o" "$dist_src" + if [ "$mode" = "-p" ]; then exit 0 fi @@ -170,6 +183,9 @@ read rsync -v -rlpt -c --copy-unsafe-links --prune-empty-dirs --delete-after \ $rsync_ops "$dist_src/" "$dist_dst/" +##fi +## + # Distribute packages, regenerate and sync the repository. # etc/stage-pkg -c $mode -d apr packaging/apr/libapr1 |