summaryrefslogtreecommitdiffhomepage
path: root/subr/build_init.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-14 13:00:38 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-14 13:00:38 +0000
commitebda8bb2b1103bfe79ba7196832f4c0b2b5caffd (patch)
tree562b7460470dd345137d041694fcbb7f8dac74d4 /subr/build_init.subr
parentae3ff05d44d48ca824347bdbd6b823a9720b1a0c (diff)
downloadmidipix_build-ebda8bb2b1103bfe79ba7196832f4c0b2b5caffd.tar.bz2
midipix_build-ebda8bb2b1103bfe79ba7196832f4c0b2b5caffd.tar.xz
build.sh: minor cleanup.
groups/2*.native_packages_*.group: adds dependencies. subr/{build_init,ex_pkg_dispatch}.subr, etc/build.usage: forcibly rebuild all dependencies w/ -r **[ ...] vs. -r *[ ... ]. subr/ex_pkg_dispatch.subr:exp_pkg_get_packages(): log message before and after resolving dependencies.
Diffstat (limited to 'subr/build_init.subr')
-rw-r--r--subr/build_init.subr11
1 files changed, 7 insertions, 4 deletions
diff --git a/subr/build_init.subr b/subr/build_init.subr
index 53327ace..c204c9b6 100644
--- a/subr/build_init.subr
+++ b/subr/build_init.subr
@@ -11,15 +11,18 @@ buildp_ast() {
};
buildp_init_args() {
- _status="";
+ local _last_pkg=""; _status="";
if [ "${ARG_AS_NEEDED:-0}" -eq 1 ]\
&& [ -e "${PREFIX}/build.gitref" ]\
&& [ "$(git rev-parse HEAD)" = "$(cat "${PREFIX}/build.gitref")" ]; then
_status="Git repository has not changed since last build and --as-needed was specified.";
fi;
- if [ -n "${ARG_RESTART}" ]\
- && [ "${ARG_RESTART#\*}" != "${ARG_RESTART}" ]; then
- ARG_RESTART="${ARG_RESTART#\*}"; ARG_RESTART_RECURSIVE=1;
+ if [ -n "${ARG_RESTART}" ]; then
+ if [ "${ARG_RESTART#\*\*}" != "${ARG_RESTART}" ]; then
+ ARG_RESTART="${ARG_RESTART#\*\*}"; ARG_RESTART_RECURSIVE=2;
+ elif [ "${ARG_RESTART#\*}" != "${ARG_RESTART}" ]; then
+ ARG_RESTART="${ARG_RESTART#\*}"; ARG_RESTART_RECURSIVE=1;
+ fi;
fi;
case "${ARG_RESTART}" in
ALL) ARG_RESTART_AT=ALL; ;;