svn commit: r316465 - head/Tools/scripts

Emanuel Haupt ehaupt at FreeBSD.org
Wed Apr 24 18:15:45 UTC 2013


Author: ehaupt
Date: Wed Apr 24 18:15:44 2013
New Revision: 316465
URL: http://svnweb.freebsd.org/changeset/ports/316465

Log:
  Use case insensitive "nice people" matching

Modified:
  head/Tools/scripts/convert-makefile-header.pl

Modified: head/Tools/scripts/convert-makefile-header.pl
==============================================================================
--- head/Tools/scripts/convert-makefile-header.pl	Wed Apr 24 18:10:30 2013	(r316464)
+++ head/Tools/scripts/convert-makefile-header.pl	Wed Apr 24 18:15:44 2013	(r316465)
@@ -142,7 +142,7 @@ MAIN: {
 				if(defined($creator)) {
 					my $is_nice=0;
 					for my $c (@$nice_people) {
-						if($creator=~m"${c}") {
+						if($creator=~m"${c}"i) {
 							$is_nice=1;
 							last;
 						}


More information about the svn-ports-all mailing list