Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Jul 2015 21:08:42 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391125 - head/Mk/Scripts
Message-ID:  <201507012108.t61L8g3O061570@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507012108.t61L8g3O061570>