Revert "makepkg: drop duplicate reporting of missing dependencies"

This removed all information on dependency failures if the --syncdeps
flag was not used.  A better approach is needed.

This reverts commit 4246a4cc4f.

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2020-03-17 14:03:58 +10:00
parent 5f6ef895b1
commit 40bbaead44

View file

@ -316,6 +316,12 @@ resolve_deps() {
[[ -z $deplist ]] && return $R_DEPS_SATISFIED [[ -z $deplist ]] && return $R_DEPS_SATISFIED
fi fi
msg "$(gettext "Missing dependencies:")"
local dep
for dep in ${deplist[@]}; do
msg2 "$dep"
done
return $R_DEPS_MISSING return $R_DEPS_MISSING
} }