summaryrefslogtreecommitdiffhomepage
path: root/997.strip.build
blob: 7db5f5ca187452191547d5e6ed9b0cbe5f0d2e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# . ./build.vars and set -o errexit -o noglob are assumed.
#

if [ "${BUILD}" != "release" ]; then
	exit;
else
	for __ in $(find ${PREFIX_NATIVE}/bin -perm -0100 \( -type f -or -type l \)); do
		set +o errexit;
		if [ -n "$(${PKG_TARGET}-objdump -h ${__} 2>/dev/null | awk '/\.debug_info\s/{print}')" ]; then
			echo ${PKG_TARGET}-strip ${__};
			${PKG_TARGET}-strip ${__};
		fi;
		set -o errexit;
	done;
fi;

# vim:filetype=sh