kiss: skip symlinks in fix_deps

This commit is contained in:
Dylan Araps 2021-07-27 14:48:53 +03:00
parent 530d123eb2
commit e88678bac5
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -661,7 +661,7 @@ pkg_fix_deps() {
# False positive (not a write).
# shellcheck disable=2094
while read -r _file; do case $_file in
while read -r _file; do [ -h "$_file" ] || case $_file in
# Look only in these locations for files of interest (libraries,
# programs, etc). This includes all subdirectories. Old behavior
# would run ldd on all files (upwards of 4000 for Python).