From d534488f2d0b6ca9e90591e74af555fe242dfe39 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Fri, 27 Jun 2008 15:01:02 +1000 Subject: Remove symlinks to libtool files This prevents dangling symlinks to removed libtool files when the !libtool option is used. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 175edb8f..da11d00d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -765,7 +765,7 @@ tidy_install() { if [ "$(check_option libtool)" = "n" ]; then msg2 "$(gettext "Removing libtool .la files...")" - find . -type f -name "*.la" -exec rm -f -- '{}' \; + find . ! -type d -name "*.la" -exec rm -f -- '{}' \; fi if [ "$(check_option emptydirs)" = "n" ]; then -- cgit v1.2.3-24-g4f1b