diff --git a/common/hooks/post-install/02-remove-libtool-archives.sh b/common/hooks/post-install/02-remove-libtool-archives.sh index e2a10d0a6a6..dd4afe86f68 100644 --- a/common/hooks/post-install/02-remove-libtool-archives.sh +++ b/common/hooks/post-install/02-remove-libtool-archives.sh @@ -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 }