diff options
author | Allan McRae <allan@archlinux.org> | 2008-06-27 15:01:02 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-06-27 09:07:39 -0500 |
commit | d534488f2d0b6ca9e90591e74af555fe242dfe39 (patch) | |
tree | 0a0e2767e2b3ac4c45436a44169efabb6b05ba06 /scripts/makepkg.sh.in | |
parent | deec3c8d004ec1a5a196bcddd7d1895a6d0c35a3 (diff) | |
download | 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>
Diffstat (limited to 'scripts/makepkg.sh.in')
-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 |