diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2020-01-12 12:06:52 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2020-01-12 12:06:52 +0000 |
commit | 1240f9c8de72bfc13a83793aa908f5aba998d190 (patch) | |
tree | edae31ad87e4590558fd8f58081fc8cc13f40743 /Tools | |
parent | 0a051c8a9db639bbc3372a159bcff0e820fd3ae1 (diff) |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/sed_checked.sh | 2 |
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 |