Show packages not being installed in the build log

This commit is contained in:
Vadim Zeitlin
2021-03-23 02:17:51 +01:00
parent bc7a7b0c2d
commit d61719edde

View File

@@ -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