svn commit: r471266 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Fri Jun 1 16:20:31 UTC 2018


Author: mat
Date: Fri Jun  1 16:20:29 2018
New Revision: 471266
URL: https://svnweb.freebsd.org/changeset/ports/471266

Log:
  SC2221 & SC2222: This pattern always overrides a later/previous one.
  
  You have specified multiple patterns in a case statement, where one will
  always override the other. The pattern being overridden is indicated
  with a SC2222 warning.
  
  PR:		227109
  Submitted by:	mat
  Sponsored by:	Absolight

Modified:
  head/Mk/Scripts/check_leftovers.sh   (contents, props changed)

Modified: head/Mk/Scripts/check_leftovers.sh
==============================================================================
--- head/Mk/Scripts/check_leftovers.sh	Fri Jun  1 16:20:26 2018	(r471265)
+++ head/Mk/Scripts/check_leftovers.sh	Fri Jun  1 16:20:29 2018	(r471266)
@@ -152,10 +152,8 @@ while read modtype path extra; do
 			share/xml/catalog.ports) ;;
 			# Ignore ghc's doc index
 			share/doc/ghc-%%GHC_VERSION%%/*) ;;
-			share/doc/ghc-%%GHC_VERSION%%/html/libraries/%%PORTNAME%%-%%PORTVERSION%%/html) ;;
 			# Ignore ghc's package conf
 			lib/ghc-%%GHC_VERSION%%/package.conf.d/*) ;;
-			lib/ghc-%%GHC_VERSION%%/package.conf.d/%%PORTNAME%%-%%PORTVERSION%%.conf) ;;
 			# Ignore common system config files
 			/etc/group|\
 			/etc/make.conf|\


More information about the svn-ports-all mailing list