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.
This commit is contained in:
Matthias Andree 2020-01-12 12:06:52 +00:00
parent 0a051c8a9d
commit 1240f9c8de
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522779

View File

@ -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