mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 22:15:36 -07:00
kiss: skip symlinks in fix_deps
This commit is contained in:
parent
530d123eb2
commit
e88678bac5
2
kiss
2
kiss
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user