Improve on 184781 - instead of ignoring the file when the only difference

is CVS Id, replace the old one with the new one automatically. While I
don't see much difference, some people think it's somehow better that way.
This commit is contained in:
Maxim Sobolev 2008-11-09 23:44:32 +00:00
parent e829eb6d61
commit 333b8b2fa0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184804

View File

@ -956,8 +956,14 @@ for COMPFILE in `find . -type f -size +0`; do
sed "s/[$]${CVS_ID_TAG}:.*[$]//g" "${COMPFILE}" > "${TMPFILE2}"
if diff -q ${DIFF_OPTIONS} "${TMPFILE1}" "${TMPFILE2}" > \
/dev/null 2>&1; then
echo " *** Temp ${COMPFILE} and installed are the same except CVS Id, deleting"
rm "${COMPFILE}"
echo " *** Temp ${COMPFILE} and installed are the same except CVS Id, replacing"
if mm_install "${COMPFILE}"; then
echo " *** ${COMPFILE} upgraded successfully"
echo ''
rm "${COMPFILE}"
else
echo " *** Problem upgrading ${COMPFILE}, it will remain to merge by hand"
fi
fi
rm -f "${TMPFILE1}" "${TMPFILE2}"
;;