aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2020-01-12 12:06:52 +0000
committerMatthias Andree <mandree@FreeBSD.org>2020-01-12 12:06:52 +0000
commit1240f9c8de72bfc13a83793aa908f5aba998d190 (patch)
treeedae31ad87e4590558fd8f58081fc8cc13f40743 /Tools
parent0a051c8a9db639bbc3372a159bcff0e820fd3ae1 (diff)
downloadports-1240f9c8de72bfc13a83793aa908f5aba998d190.tar.gz
ports-1240f9c8de72bfc13a83793aa908f5aba998d190.zip
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.
Notes
Notes: svn path=/head/; revision=522779
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/sed_checked.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/sed_checked.sh b/Tools/scripts/sed_checked.sh
index 1592062c4bf3..647d59c7ba19 100755
--- a/Tools/scripts/sed_checked.sh
+++ b/Tools/scripts/sed_checked.sh
@@ -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