- Ignore install-info errors in scriptlets

This commit is contained in:
Miloslav Trmac 2007-01-05 04:56:17 +00:00
parent 99f3bcef1c
commit ca6ac22cbe
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,7 @@
Summary: The GNU versions of find utilities (find and xargs) Summary: The GNU versions of find utilities (find and xargs)
Name: findutils Name: findutils
Version: 4.2.29 Version: 4.2.29
Release: 1 Release: 2
Epoch: 1 Epoch: 1
License: GPL License: GPL
Group: Applications/File Group: Applications/File
@ -55,11 +55,11 @@ rm -f $RPM_BUILD_ROOT%{_infodir}/dir
%find_lang %{name} %find_lang %{name}
%post %post
/sbin/install-info %{_infodir}/find.info.gz %{_infodir}/dir /sbin/install-info %{_infodir}/find.info.gz %{_infodir}/dir || :
%preun %preun
if [ $1 = 0 ]; then if [ $1 = 0 ]; then
/sbin/install-info --delete %{_infodir}/find.info.gz %{_infodir}/dir /sbin/install-info --delete %{_infodir}/find.info.gz %{_infodir}/dir || :
fi fi
%clean %clean
@ -75,6 +75,9 @@ rm -rf %{buildroot}
%{_infodir}/find.info* %{_infodir}/find.info*
%changelog %changelog
* Fri Jan 5 2007 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-2
- Ignore install-info errors in scriptlets
* Sun Nov 26 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-1 * Sun Nov 26 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-1
- Update to findutils-4.2.29 - Update to findutils-4.2.29
- Fix some rpmlint warnings - Fix some rpmlint warnings