diff --git a/common/hooks/post-install/02-remove-libtool-archives.sh b/common/hooks/post-install/02-remove-libtool-archives.sh index bffe02c090..e2a10d0a6a 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} -type f -name \*.la -delete fi }