summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-11-28 14:13:36 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-11-28 14:13:36 +0000
commit9bed938c6925bf445f04e58f60f759a79f57de34 (patch)
treefab814c1b89fc7d8f1bfc693a9c9491f1e46a1b0 /build.sh
parenteaf9cb372d8aee2d64786f791cdfaf428d98a633 (diff)
downloadmidipix_build-9bed938c6925bf445f04e58f60f759a79f57de34.tar.bz2
midipix_build-9bed938c6925bf445f04e58f60f759a79f57de34.tar.xz
build.sh: log build target {start,finish}.
vars/build.vars, etc/build.usage: adds {host,native}_toolchain_deps.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index d26ab7d3..8c0d4b02 100755
--- a/build.sh
+++ b/build.sh
@@ -15,6 +15,7 @@ for BUILD_TARGET_META in invariants ${BUILD_TARGETS_META:-world}; do
&& [ -n "${BUILD_PACKAGES_RESTART}" ]; then
BUILD_PACKAGES="$(ex_lfilter "${BUILD_PACKAGES}" "${BUILD_PACKAGES_RESTART}")";
fi;
+ ex_log_msg info "Starting \`${BUILD_TARGET_LC}' build target...";
for PKG_NAME in ${BUILD_PACKAGES}; do
ex_log_msg info "Starting \`${PKG_NAME}' build...";
ex_pkg_dispatch "${BUILD_TARGET}" "${PKG_NAME}" \
@@ -43,6 +44,8 @@ for BUILD_TARGET_META in invariants ${BUILD_TARGETS_META:-world}; do
done;
if [ "${BUILD_SCRIPT_RC:-0}" -ne 0 ]; then
break;
+ else
+ ex_log_msg succ "Finished \`${BUILD_TARGET_LC}' build target.";
fi;
done;
done;