[pacman-dev] [PATCH] makepkg: Fix listing of uninstalled deps

Allan McRae allan at archlinux.org
Sun Apr 29 13:22:22 UTC 2018


Signed-off-by: Allan McRae <allan at 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


More information about the pacman-dev mailing list