From 0c9d1b7c3b74f16c7aab2666b53a0ef4cd517cd1 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 21 May 2020 11:11:10 +0300 Subject: [PATCH] kiss: Silently skip fixdeps() if dependencies not available --- kiss | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kiss b/kiss index 268ba9a..08777d9 100755 --- a/kiss +++ b/kiss @@ -448,11 +448,6 @@ pkg_fixdeps() { # dependencies pulled in by the package's build suite. log "$1" "Checking for missing dependencies" - command -v ldd >/dev/null || { - war "ldd not found, skipping dependency fixer" - return 0 - } - # Go to the built package directory to simplify path building. cd "$pkg_dir/$1/$pkg_db/$1"