[pacman-dev] [PATCH] Remove symlinks to libtool files
Allan McRae
allan at archlinux.org
Fri Jun 27 01:01:02 EDT 2008
This prevents dangling symlinks to removed libtool files when
the !libtool option is used.
Signed-off-by: Allan McRae <allan at archlinux.org>
---
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 bce2e6c..7f51065 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -751,7 +751,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
--
1.5.6
More information about the pacman-dev
mailing list