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:
parent
0a051c8a9d
commit
1240f9c8de
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522779
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user