From d61719eddebdfa60b7c31c855962f4ce12a125b6 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Mar 2021 02:17:51 +0100 Subject: [PATCH] Show packages not being installed in the build log --- build/tools/before_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index 6a5634bcef..52c9befce9 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -66,6 +66,8 @@ case $(uname -s) in for pkg in $extra_deps; do if $(apt-cache pkgnames | grep -q $pkg) ; then pkg_install="$pkg_install $pkg" + else + echo "Not installing non-existent package $pkg" fi done