svn commit: r501947 - head/Tools/scripts

Matthias Fechner mfechner at FreeBSD.org
Sat May 18 10:28:01 UTC 2019


Author: mfechner
Date: Sat May 18 10:28:00 2019
New Revision: 501947
URL: https://svnweb.freebsd.org/changeset/ports/501947

Log:
  Do not search only in subfolder editors but in all.
  I forgot to remove this before I commited it.

Modified:
  head/Tools/scripts/search_lib_depends_and_bump.sh

Modified: head/Tools/scripts/search_lib_depends_and_bump.sh
==============================================================================
--- head/Tools/scripts/search_lib_depends_and_bump.sh	Sat May 18 10:10:50 2019	(r501946)
+++ head/Tools/scripts/search_lib_depends_and_bump.sh	Sat May 18 10:28:00 2019	(r501947)
@@ -33,7 +33,7 @@ PORT_TO_SEARCH=${1}
 BASEDIR=$(pwd)
 # Get a list of all ports
 echo "Prepare a list of all ports"
-ports=$(find . -name Makefile -path "./editors/*" ! -path "./Tools/* | sort")
+ports=$(find . -name Makefile ! -path "./Tools/* | sort")
 echo "done."
 echo
 


More information about the svn-ports-all mailing list