summaryrefslogtreecommitdiff
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
parentNew port: devel/app-builder (diff)
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