summaryrefslogtreecommitdiffhomepage
path: root/vars/install_strip_host.vars
blob: 1a60be72e82b25d77cfc8d0d0f91c05684923cc1 (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
		rtl_fileop rm "${PREFIX}/bin/${PKG_TARGET}-install-strip";
	fi;
	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