svn commit: r453170 - head/Tools/scripts

Mathieu Arnold mat at FreeBSD.org
Mon Oct 30 11:23:19 UTC 2017


Author: mat
Date: Mon Oct 30 11:23:17 2017
New Revision: 453170
URL: https://svnweb.freebsd.org/changeset/ports/453170

Log:
  The final sort was missing from some places.
  
  Sponsored by:	Absolight

Modified:
  head/Tools/scripts/MOVEDlint.awk

Modified: head/Tools/scripts/MOVEDlint.awk
==============================================================================
--- head/Tools/scripts/MOVEDlint.awk	Mon Oct 30 11:03:47 2017	(r453169)
+++ head/Tools/scripts/MOVEDlint.awk	Mon Oct 30 11:23:17 2017	(r453170)
@@ -86,10 +86,10 @@ $3 !~ /^20[0-3][0-9]-[01][0-9]-[0-3][0-9]$/ {
 
 #    Produces too many false positives
 #    if ($4 ~ /^[a-z].*/)
-#       printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4
+#       printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4 | sort
 
     if ($4 ~ /\.$/)
-        printf "%5d: Final character is a dot: (%s)\n", NR, $4
+        printf "%5d: Final character is a dot: (%s)\n", NR, $4 | sort
 }
 
 END {


More information about the svn-ports-all mailing list