- teach gendiff about unreadable files (#42666).

CVS patchset: 5553
CVS date: 2002/07/13 19:54:36
This commit is contained in:
jbj 2002-07-13 19:54:36 +00:00
parent fa1098b410
commit 8caf683031
3 changed files with 8 additions and 1 deletions

View File

@ -169,6 +169,7 @@
- install rpmal.h and rpmhash.h, implicit rpmps.hinclude, for now.
- revert headerFree/headerLink/headerUnlink debugging.
- popt: mingw32 portability configure check (#67911).
- teach gendiff about unreadable files (#42666).
4.0.3 -> 4.0.4:
- solaris: translate i86pc to i386 (#57182).

View File

@ -10,5 +10,10 @@ find $1 \( -name "*$2" -o -name ".*$2" \) -print |
while read f; do
U=-u
[ "`basename $f`" = "ChangeLog$2" ] && U=-U0
diff ${U} $f `echo $f | sed s/$2\$//`
# diff ${U} $f `echo $f | sed s/$2\$//`
if [ -r "$f" ]; then
diff ${U} "${f}" "${f%$2}"
else
diff ${U} /dev/null "${f%$2}"
fi
done

View File

@ -518,6 +518,7 @@ fi
- install rpmal.h and rpmhash.h, implicit rpmps.hinclude, for now.
- revert headerFree/headerLink/headerUnlink debugging.
- popt: mingw32 portability configure check (#67911).
- teach gendiff about unreadable files (#42666).
* Fri Jul 12 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.47
- display signature details using rpm -qi.