summaryrefslogtreecommitdiffhomepage
path: root/subr/build_init.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-25 22:31:28 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-25 22:31:28 +0000
commit4a5da5254e1207686f492e7ce8759c80466185f3 (patch)
tree4d8f42c4dfb10b68e75b0a26b581b41ea3218d2a /subr/build_init.subr
parentd9df0cc4aa620e045a8df983ed959cbe25efe131 (diff)
downloadmidipix_build-4a5da5254e1207686f492e7ce8759c80466185f3.tar.bz2
midipix_build-4a5da5254e1207686f492e7ce8759c80466185f3.tar.xz
build.sh: reintroduce {disabled,skipped}_pkg messages at -v[v[v]].
build.sh, subr/build_init.subr: minor cleanup. subr/ex_pkg_dispatch.subr:exp_pkg_expand_packages(): call ${_dispatch_fn} w/ {disabled,skipped}_pkg for {disabled,skipped} packages. subr/ex_pkg_dispatch.subr:exp_pkg_expand_packages(): don't mutate ${EX_PKG_NSKIPPED}. subr/ex_pkg_dispatch.subr:ex_pkg_dispatch(): don't set ${EX_PKG_NSKIPPED}.
Diffstat (limited to 'subr/build_init.subr')
-rw-r--r--subr/build_init.subr8
1 files changed, 3 insertions, 5 deletions
diff --git a/subr/build_init.subr b/subr/build_init.subr
index 870128ba..a52ff5ff 100644
--- a/subr/build_init.subr
+++ b/subr/build_init.subr
@@ -40,11 +40,9 @@ buildp_init_args() {
fi;
fi;
ex_rtl_log_set_vnfo_lvl "${ARG_VERBOSE:-0}";
- BUILD_IS_PARENT=1;
- BUILD_DATE_START="$(ex_rtl_date %Y-%m-%d-%H-%M-%S)";
- BUILD_NFINI="${BUILD_NSKIP:=${BUILD_NFAIL:=${BUILD_NBUILT:=0}}}";
- BUILD_PKGS_FAILED="";
- BUILD_TIMES_SECS="$(ex_rtl_date %s)";
+ BUILD_DATE_START="$(ex_rtl_date %Y-%m-%d-%H-%M-%S)"; BUILD_IS_PARENT=1;
+ BUILD_NFAIL="${BUILD_NFINI:=${BUILD_NSKIP:=0}}";
+ BUILD_PKGS_FAILED=""; BUILD_TIMES_SECS="$(ex_rtl_date %s)";
if [ "${ARG_FETCH_FORCE}" = "ipv4" ]; then
DEFAULT_GIT_ARGS="-4${DEFAULT_GIT_ARGS:+ ${DEFAULT_GIT_ARGS}}";
DEFAULT_WGET_ARGS="-4${DEFAULT_WGET_ARGS:+ ${DEFAULT_WGET_ARGS}}";