summaryrefslogtreecommitdiffhomepage
path: root/vars/install_strip_host.vars
blob: 1fb33868e657542c5c89b9eefccc423a603b0806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# set +o errexit -o noglob is assumed.
#

pkg_install_strip_host_all() {
	if [ -e "${PREFIX}/bin/${PKG_TARGET}-install-strip" ]; then
		ex_rtl_fileop rm "${PREFIX}/bin/${PKG_TARGET}-install-strip";
	fi;
	ex_rtl_fileop mkdir "${PREFIX}/bin";
	cat > "${PREFIX}/bin/${PKG_TARGET}-install-strip" <<EOF
#!/bin/sh
install -s "\${@}";
EOF
	chmod +x "${PREFIX}/bin/${PKG_TARGET}-install-strip";
};

# vim:filetype=sh