From e88678bac5c413d33e670de516713deb3e3a99f5 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 27 Jul 2021 14:48:53 +0300 Subject: [PATCH] kiss: skip symlinks in fix_deps --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 7a6307a..4ccef11 100755 --- a/kiss +++ b/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).