diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2020-02-29 12:01:20 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2020-02-29 12:01:20 +0000 |
commit | 2960a458616123519ce488b5505a28c6eb184bcc (patch) | |
tree | 0aeedd93d2079ef62a5dc8f1deb59e2e8006c12b /subr | |
parent | 69f61df965b3ef846d13f7c5c3cee65ec46ca2c1 (diff) | |
download | midipix_build-2960a458616123519ce488b5505a28c6eb184bcc.tar.bz2 midipix_build-2960a458616123519ce488b5505a28c6eb184bcc.tar.xz |
build.sh:buildp_dispatch{,_pkg_state}(): forward `msg_pkg' messages to stdout given -v.
subr/ex_pkg_dispatch.subr:exp_pkg_dispatch_group() forward `msg_pkg' to ${_dispatch_fn}.
vars/invariants_zipdist.vars: log progress w/ `msg_pkg' messages in addition to rtl_log_msg().
Diffstat (limited to 'subr')
-rw-r--r-- | subr/ex_pkg_dispatch.subr | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/subr/ex_pkg_dispatch.subr b/subr/ex_pkg_dispatch.subr index c1eab55b..489ed634 100644 --- a/subr/ex_pkg_dispatch.subr +++ b/subr/ex_pkg_dispatch.subr @@ -61,6 +61,8 @@ exp_pkg_dispatch_group() { fi; ;; fail) : $((EXP_PKG_DISPATCH_NJOBS-=1)); _rc=1; "${_dispatch_fn}" fail_pkg ${_pipe_msg#fail }; ;; + msg_pkg) + "${_dispatch_fn}" msg_pkg ${_pipe_msg#msg_pkg }; ;; step) "${_dispatch_fn}" step_pkg ${_pipe_msg#step }; ;; esac; done <>"${_pipe_path}"; if [ -n "${EXP_PKG_NAMES}" ] && [ "${_rc}" -eq 0 ]; then |