Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jan 2020 12:06:52 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r522779 - head/Tools/scripts
Message-ID:  <202001121206.00CC6qol066251@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001121206.00CC6qol066251>