- ignore errors for install-info calls in post scripts,

otherwise installing with "--excludedocs" fails

Rev filesystems/85 Md5 5a30324c69de0024e01c34ceb9568de3 2017-09-19 08:54:20 dirkmueller 527018
This commit is contained in:
OBS User dirkmueller 2017-09-19 08:54:20 +00:00 committed by Git OBS Bridge
parent 633ffc6a43
commit ca3561f594
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Sep 18 14:42:48 CEST 2017 - ro@suse.de
- ignore errors for install-info calls in post scripts,
otherwise installing with "--excludedocs" fails
-------------------------------------------------------------------
Tue Sep 5 15:33:16 UTC 2017 - jack@suse.cz

View File

@ -281,14 +281,14 @@ done
%post
/sbin/ldconfig
%if ! %{build_mini}
%install_info --info-dir=%{_infodir} %{_infodir}/libext2fs.info.gz
%install_info --info-dir=%{_infodir} %{_infodir}/libext2fs.info.gz || :
%{?regenerate_initrd_post}
%endif
%postun
/sbin/ldconfig
%if ! %{build_mini}
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libext2fs.info.gz
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libext2fs.info.gz || :
%{?regenerate_initrd_post}
%endif