[pacman-dev] [PATCH] makepkg: Fix listing of uninstalled deps
29 Apr
2018
29 Apr
'18
1:22 p.m.
Signed-off-by: Allan McRae <allan@archlinux.org> --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index bc2d0061..eee8a56c 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -305,7 +305,7 @@ resolve_deps() { msg "$(gettext "Missing dependencies:")" local dep - for dep in $deplist; do + for dep in ${deplist[@]}; do msg2 "$dep" done -- 2.17.0
2441
Age (days ago)
2441
Last active (days ago)
0 comments
1 participants
participants (1)
-
Allan McRae