Index: head/Tools/scripts/sed_checked.sh =================================================================== --- head/Tools/scripts/sed_checked.sh (revision 522778) +++ head/Tools/scripts/sed_checked.sh (revision 522779) @@ -1,13 +1,13 @@ #!/bin/sh set -e /usr/bin/sed -i.bak "$@" 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 done