summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2018-05-10 18:54:38 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2018-05-10 18:54:38 +0000
commit95a70aec5e8f69f2c328b44e352aedcd4a91e10a (patch)
treeddcbc94551ed6c46803c00bcfec11ddfec8c7b66 /build.sh
parente7c3f6a3d79a67d996056f65ce8355d5db9a555e (diff)
downloadmidipix_build-95a70aec5e8f69f2c328b44e352aedcd4a91e10a.tar.bz2
midipix_build-95a70aec5e8f69f2c328b44e352aedcd4a91e10a.tar.xz
build.sh:start_build: correctly handle -r ALL.
patches/findutils_minipix-4.5.19.local.patch: link for findutils_minipix.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index a2a85991..e9651025 100755
--- a/build.sh
+++ b/build.sh
@@ -11,7 +11,8 @@ buildp_dispatch() {
ex_rtl_log_set_vnfo_lvl "${ARG_VERBOSE:-0}";
ex_rtl_log_msg info "Build started by ${BUILD_USER:=${USER}}@${BUILD_HNAME:=$(hostname)} at ${BUILD_DATE_START}.";
ex_rtl_log_env_vars "build (global)" ${DEFAULT_LOG_ENV_VARS};
- if [ -n "${ARG_RESTART}" ]; then
+ if [ -n "${ARG_RESTART}" ]\
+ && [ "${ARG_RESTART}" != ALL ]; then
_build_tgt_pkg_names="";
for _build_tgt_lc in ${BUILD_TARGETS:-${TARGETS_DEFAULT}}; do
_build_tgt_uc="$(ex_rtl_toupper "${_build_tgt_lc}")";