summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_strip.subr
blob: 775c4b5b276840878a98305d7fe0b5e6ce6817e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# set -o errexit -o noglob are assumed.
#

pkg_strip() {
	local _tree_root="${PKG_DESTDIR}/bin" _bin_path;
	if [ ! -e "${_tree_root}" ]; then
		return;
	fi;
	for _bin_path in $(find "${_tree_root}" -perm /a=x	\
			\( -type f -or -type l \)); do
		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;
	done;
};

# vim:filetype=sh