- Errors installing with --excludedocs (#515925)

This commit is contained in:
Rex Dieter 2009-09-16 17:54:36 +00:00
parent 1c408d0148
commit b096de7e2a

View File

@ -8,7 +8,7 @@
Name: pinentry Name: pinentry
Version: 0.7.6 Version: 0.7.6
Release: 3%{?dist} Release: 4%{?dist}
Summary: Collection of simple PIN or passphrase entry dialogs Summary: Collection of simple PIN or passphrase entry dialogs
Group: Applications/System Group: Applications/System
@ -129,10 +129,12 @@ rm -rf $RPM_BUILD_ROOT
%{_sbindir}/update-alternatives --remove pinentry %{_bindir}/pinentry-qt ||: %{_sbindir}/update-alternatives --remove pinentry %{_bindir}/pinentry-qt ||:
%post %post
/sbin/install-info %{_infodir}/pinentry.info %{_infodir}/dir if [ -f %{_infodir}/pinentry.info* ]; then
/sbin/install-info %{_infodir}/pinentry.info %{_infodir}/dir ||:
fi
%preun %preun
if [ $1 -eq 0 ] ; then if [ $1 -eq 0 -a -f %{_infodir}/pinentry.info* ] ; then
/sbin/install-info --delete %{_infodir}/pinentry.info %{_infodir}/dir ||: /sbin/install-info --delete %{_infodir}/pinentry.info %{_infodir}/dir ||:
fi fi
@ -161,6 +163,9 @@ fi
%changelog %changelog
* Wed Sep 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-4
- Errors installing with --excludedocs (#515925)
* Wed Sep 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-3 * Wed Sep 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-3
- drop alternatives, use app-wrapper instead (borrowed from opensuse) - drop alternatives, use app-wrapper instead (borrowed from opensuse)
- -qt4 experimental subpkg, -qt includes qt3 version again (#523488) - -qt4 experimental subpkg, -qt includes qt3 version again (#523488)