summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2008-06-27 07:01:02 +0200
committerDan McGee <dan@archlinux.org>2008-06-27 16:07:39 +0200
commitd534488f2d0b6ca9e90591e74af555fe242dfe39 (patch)
tree0a0e2767e2b3ac4c45436a44169efabb6b05ba06
parentdeec3c8d004ec1a5a196bcddd7d1895a6d0c35a3 (diff)
downloadpacman-d534488f2d0b6ca9e90591e74af555fe242dfe39.tar.gz
pacman-d534488f2d0b6ca9e90591e74af555fe242dfe39.tar.xz
Remove symlinks to libtool files
This prevents dangling symlinks to removed libtool files when the !libtool option is used. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in2
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