svn commit: r494316 - head/Mk/Scripts

Antoine Brodin antoine at FreeBSD.org
Fri Mar 1 20:26:12 UTC 2019


Author: antoine
Date: Fri Mar  1 20:26:11 2019
New Revision: 494316
URL: https://svnweb.freebsd.org/changeset/ports/494316

Log:
  Fix leftover detection when ccache is not used
  
  With hat:	portmgr

Modified:
  head/Mk/Scripts/check_leftovers.sh

Modified: head/Mk/Scripts/check_leftovers.sh
==============================================================================
--- head/Mk/Scripts/check_leftovers.sh	Fri Mar  1 20:11:47 2019	(r494315)
+++ head/Mk/Scripts/check_leftovers.sh	Fri Mar  1 20:26:11 2019	(r494316)
@@ -54,7 +54,7 @@ tmpplist=$(make -C ${portdir} -VTMPPLIST)
 while read -r modtype path extra; do
 	# Ignore everything from these files/directories
 	case "${path}" in
-		${CCACHE_DIR}/*|\
+		${CCACHE_DIR:-/nonexistent}/*|\
 		/compat/linux/proc/*|\
 		/dev/*|\
 		/etc/make.conf.bak|\


More information about the svn-ports-head mailing list