diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/makepkg.sh.in | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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 | 
