Fix missing variable that got accidentally removed before commit

This commit is contained in:
Baptiste Daroussin
2015-07-01 21:08:42 +00:00
parent 637c66da78
commit 57e67943aa
+1 -1
View File
@@ -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