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:
parent
5f6ef895b1
commit
40bbaead44
1 changed files with 6 additions and 0 deletions
|
@ -316,6 +316,12 @@ resolve_deps() {
|
|||
[[ -z $deplist ]] && return $R_DEPS_SATISFIED
|
||||
fi
|
||||
|
||||
msg "$(gettext "Missing dependencies:")"
|
||||
local dep
|
||||
for dep in ${deplist[@]}; do
|
||||
msg2 "$dep"
|
||||
done
|
||||
|
||||
return $R_DEPS_MISSING
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue