hooks/remove-la: remove all *.la even if those are symlinks.

This commit is contained in:
Juan RP 2015-02-23 11:33:43 +01:00
parent 1e6c9ef4b7
commit 8bf5cb819a
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
hook() {
if [ -z "$keep_libtool_archives" -a -d "${PKGDESTDIR}" ]; then
find ${PKGDESTDIR} -type f -name \*.la -delete
find ${PKGDESTDIR} -name \*.la -delete
fi
}