From 8bf5cb819aef8ccc3e1aeba3c799b8c737e5e5c8 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 23 Feb 2015 11:33:43 +0100 Subject: [PATCH] hooks/remove-la: remove all *.la even if those are symlinks. --- common/hooks/post-install/02-remove-libtool-archives.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/post-install/02-remove-libtool-archives.sh b/common/hooks/post-install/02-remove-libtool-archives.sh index e2a10d0a6a..dd4afe86f6 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 }