Hi all,<br><br>I noticed something disturbing when trying to look up installed OpenSSL documentation<br> the other day: a lot of packages have their documentation files missing. Running this script on my system:<br><br>for i in `rpm -qa`; do
<br>  rpm -V --nomd5 --nosize $i 1>/dev/null 2>&1 || echo $i<br>done<br><br>generates 283 packages, from acpid and anacron to yp-tools and zip.<br><br>The cause is three-fold:<br>1. Said packages put their documentation in %{doc}/%{name}-%{version}, without %{release}
<br>2. The RPM short-cut, triggered on package deletion, that skips the check if a file in /usr/share/ is owned by another package<br>3. Yum would install the new package, *then* remove the old package<br><br>As such I am not sure where to file this bug. It is quite disturbing as in the past only 64-bit users who want to remove 32-bit RPMs notice this, but now due to the documentation packaging of some packages, the bug is also triggered on minor updates (version unchanged, release number bumped).
<br><br>Filing a bug against hundreds of packages sure does not look like fun. Suggestions?<br><br>-- <br>Michel<br><br>