Fix missing Texinfo manual in the Directory node

This commit is contained in:
Vitezslav Crhonek 2011-01-11 14:50:11 +01:00
parent 1096776321
commit 03b41eb8a4
1 changed files with 9 additions and 5 deletions

View File

@ -3,7 +3,7 @@
Summary: Tools needed to create Texinfo format documentation files
Name: texinfo
Version: 4.13a
Release: 12%{?dist}
Release: 13%{?dist}
License: GPLv3+
Group: Applications/Publishing
Url: http://www.gnu.org/software/texinfo/
@ -98,14 +98,14 @@ mv ChangeLog_utf8 ChangeLog
rm -rf ${RPM_BUILD_ROOT}
%post
if [ -f %{_infodir}/texinfo ]; then # --excludedocs?
/sbin/install-info %{_infodir}/texinfo %{_infodir}/dir || :
if [ -f %{_infodir}/texinfo.gz ]; then # --excludedocs?
/sbin/install-info %{_infodir}/texinfo.gz %{_infodir}/dir || :
fi
%preun
if [ $1 = 0 ]; then
if [ -f %{_infodir}/texinfo ]; then # --excludedocs?
/sbin/install-info --delete %{_infodir}/texinfo %{_infodir}/dir || :
if [ -f %{_infodir}/texinfo.gz ]; then # --excludedocs?
/sbin/install-info --delete %{_infodir}/texinfo.gz %{_infodir}/dir || :
fi
fi
@ -168,6 +168,10 @@ fi
%{_mandir}/man1/pdftexi2dvi.1*
%changelog
* Tue Jan 11 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-13
- Fix missing Texinfo manual in the Directory node
Resolves: #662382
* Wed Nov 10 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-12
- Fix get_sectioning_number function problem
Resolves: #651314