Fix installation of info documentation

This commit is contained in:
Vitezslav Crhonek 2013-11-12 11:23:37 +01:00
parent bccba387a2
commit e1482b2964

14
m4.spec
View File

@ -1,7 +1,7 @@
Summary: The GNU macro processor
Name: m4
Version: 1.4.17
Release: 1%{?dist}
Release: 2%{?dist}
License: GPLv3+
Group: Applications/Text
Source0: http://ftp.gnu.org/gnu/m4/m4-%{version}.tar.xz
@ -47,18 +47,22 @@ make %{?_smp_mflags} check
%{_mandir}/man1/m4.1*
%post
if [ -f %{_infodir}/m4.info ]; then # --excludedocs?
/sbin/install-info %{_infodir}/m4.info %{_infodir}/dir || :
if [ -f %{_infodir}/m4.info.gz ]; then # --excludedocs?
/sbin/install-info %{_infodir}/m4.info.gz %{_infodir}/dir || :
fi
%preun
if [ "$1" = 0 ]; then
if [ -f %{_infodir}/m4.info ]; then # --excludedocs?
/sbin/install-info --delete %{_infodir}/m4.info %{_infodir}/dir || :
if [ -f %{_infodir}/m4.info.gz ]; then # --excludedocs?
/sbin/install-info --delete %{_infodir}/m4.info.gz %{_infodir}/dir || :
fi
fi
%changelog
* Tue Nov 12 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 1.4.17-2
- Fix installation of info documentation
Resolves: #1020194
* Tue Nov 05 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 1.4.17-1
- Update to m4-1.4.17
Resolves: #1010895