svn commit: r393223 - head/Mk/Scripts

Fukang Chen loader at FreeBSD.org
Thu Jul 30 07:43:50 UTC 2015


Author: loader (doc committer)
Date: Thu Jul 30 07:43:49 2015
New Revision: 393223
URL: https://svnweb.freebsd.org/changeset/ports/393223

Log:
  checks $WRKSRC for all direct dependencies in the limited-clean-depends:
  target, like the original CLEAN-DEPENDS-LIMITED in bsd.port.mk
  
  Approved by: bapt
  Differential Revision: https://reviews.freebsd.org/D3233

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

Modified: head/Mk/Scripts/clean-depends-list.sh
==============================================================================
--- head/Mk/Scripts/clean-depends-list.sh	Thu Jul 30 07:27:07 2015	(r393222)
+++ head/Mk/Scripts/clean-depends-list.sh	Thu Jul 30 07:43:49 2015	(r393223)
@@ -39,7 +39,7 @@ check_dep() {
 		if [ -d ${1} ]; then
 			echo ${d}
 		elif [ "$arg" = "limited" ]; then
-			break
+			continue
 		fi
 		shift
 		check_dep $@


More information about the svn-ports-all mailing list