From e94fcab1dc52cf9efb344dc67e51b301a6f298d5 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 26 Sep 2020 00:38:24 +0300 Subject: [PATCH] kiss: fix matching of fixdeps commands --- kiss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiss b/kiss index bc2cca2..a0ea9d6 100755 --- a/kiss +++ b/kiss @@ -462,12 +462,12 @@ pkg_fixdeps() { # Check if ldd result is direct dependency of package. case ${elf_cmd##*/} in - readelf) + *readelf) "$elf_cmd" -d "$file" | grep -q "NEEDED.* \[${dep##*/}\]" ;; - objdump) + *objdump) "$elf_cmd" -p "$file" | grep -q "NEEDED.* ${dep##*/}\$" ;;