svn commit: r391125 - head/Mk/Scripts

Baptiste Daroussin bapt at FreeBSD.org
Wed Jul 1 21:08:43 UTC 2015


Author: bapt
Date: Wed Jul  1 21:08:42 2015
New Revision: 391125
URL: https://svnweb.freebsd.org/changeset/ports/391125

Log:
  Fix missing variable that got accidentally removed before commit

Modified:
  head/Mk/Scripts/all-depends-list.sh

Modified: head/Mk/Scripts/all-depends-list.sh
==============================================================================
--- head/Mk/Scripts/all-depends-list.sh	Wed Jul  1 20:53:34 2015	(r391124)
+++ head/Mk/Scripts/all-depends-list.sh	Wed Jul  1 21:08:42 2015	(r391125)
@@ -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


More information about the svn-ports-all mailing list