summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_purge_la.subr
blob: be5ab48991fd02c1283c092059e09c1b8a683237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#
# set -o errexit -o noglob are assumed.
#

pkg_install_purge_la() {
	local _la_path;
	for _la_path in $(find "${PKG_DESTDIR}" -type f -name \*.la); do
		build_fileop rm ${_la_path};
	done;
};

# vim:filetype=sh