summaryrefslogtreecommitdiffhomepage
path: root/subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-12-03 21:17:04 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-12-03 21:17:04 +0000
commit64b790071e5f5657d25c280cbfc24efd71ed32f6 (patch)
treeb81e8a70b53a2265bcb9e1068a8cecfdcd3a5fc0 /subr
parent89977dbd8f22624e7f59a33ce60f7055acc79247 (diff)
downloadmidipix_build-64b790071e5f5657d25c280cbfc24efd71ed32f6.tar.bz2
midipix_build-64b790071e5f5657d25c280cbfc24efd71ed32f6.tar.xz
subr/pkg_install_strip.subr: remove stray set -o errexit barrier.
Diffstat (limited to 'subr')
-rw-r--r--subr/pkg_install_strip.subr2
1 files changed, 0 insertions, 2 deletions
diff --git a/subr/pkg_install_strip.subr b/subr/pkg_install_strip.subr
index 5d232a3c..775c4b5b 100644
--- a/subr/pkg_install_strip.subr
+++ b/subr/pkg_install_strip.subr
@@ -9,13 +9,11 @@ pkg_strip() {
fi;
for _bin_path in $(find "${_tree_root}" -perm /a=x \
\( -type f -or -type l \)); do
- set +o errexit;
if objdump -sj .debug_info "${_bin_path}" >/dev/null 2>&1; then
ex_rtl_log_msg info "Stripping ${_bin_path}...";
ex_rtl_log_msg vnfo "${PKG_TARGET}-strip ${_bin_path}";
${PKG_TARGET}-strip ${_bin_path};
fi;
- set -o errexit;
done;
};