svn commit: r522779 - head/Tools/scripts

Matthias Andree mandree at FreeBSD.org
Sun Jan 12 12:06:53 UTC 2020


Author: mandree
Date: Sun Jan 12 12:06:52 2020
New Revision: 522779
URL: https://svnweb.freebsd.org/changeset/ports/522779

Log:
  Tools/scripts/sed_checked.sh: reword sed warning
  
  The original wording was misleading and might have mistaken for
  identical file names, but what is meant is that the sed run did not
  introduce changes to the file's __content__. Reword accordingly.

Modified:
  head/Tools/scripts/sed_checked.sh

Modified: head/Tools/scripts/sed_checked.sh
==============================================================================
--- head/Tools/scripts/sed_checked.sh	Sun Jan 12 12:04:31 2020	(r522778)
+++ head/Tools/scripts/sed_checked.sh	Sun Jan 12 12:06:52 2020	(r522779)
@@ -6,7 +6,7 @@ for x in "${@}" ; do
     if [ -f "${x}" ]; then
 	if cmp -s "${x}" "${x}".bak ; then
             if [ ! -z "${REWARNFILE}" ]; then
-                echo sed failed: backup file same as original: ${x#${WRKSRC}/} >> ${REWARNFILE}
+                echo sed failed: file content unchanged from backup: ${x#${WRKSRC}/} >> ${REWARNFILE}
             fi
         fi
     fi


More information about the svn-ports-all mailing list