From 57e67943aa1769737bb7372ae33bef444261d64f Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Wed, 1 Jul 2015 21:08:42 +0000 Subject: [PATCH] Fix missing variable that got accidentally removed before commit --- Mk/Scripts/all-depends-list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mk/Scripts/all-depends-list.sh b/Mk/Scripts/all-depends-list.sh index 982878dff556..6afcac26b606 100644 --- a/Mk/Scripts/all-depends-list.sh +++ b/Mk/Scripts/all-depends-list.sh @@ -26,7 +26,7 @@ check_dep() { *\ ${d}\ *) continue ;; # Already checked esac checked="${checked} ${d}" - if [ ! -d ]; then + if [ ! -d ${d} ]; then echo "${dp_PKGNAME}: \"${d}\" non-existent -- dependency list incomplete" >&2 continue fi