From b4b949beded1b8bfc414648ceabb47f8c2e7da4b Mon Sep 17 00:00:00 2001 From: Ivana Varekova Date: Tue, 11 Aug 2009 06:15:10 +0000 Subject: [PATCH] - fix installation with --excludedocs option (#515975) --- gzip.spec | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/gzip.spec b/gzip.spec index d4d504e..52023a3 100644 --- a/gzip.spec +++ b/gzip.spec @@ -1,7 +1,7 @@ Summary: The GNU data compression program Name: gzip Version: 1.3.12 -Release: 10%{?dist} +Release: 11%{?dist} # info pages are under GFDL license License: GPLv2 and GFDL Group: Applications/File @@ -73,11 +73,15 @@ rm -f ${RPM_BUILD_ROOT}/bin/uncompress rm -rf ${RPM_BUILD_ROOT} %post -/sbin/install-info %{_infodir}/gzip.info.gz %{_infodir}/dir || : +if [ -f %{_infodir}/gzip.info* ]; then + /sbin/install-info %{_infodir}/gzip.info.gz %{_infodir}/dir || : +fi %preun if [ $1 = 0 ]; then - /sbin/install-info --delete %{_infodir}/gzip.info.gz %{_infodir}/dir || : + if [ -f %{_infodir}/gzip.info* ]; then + /sbin/install-info --delete %{_infodir}/gzip.info.gz %{_infodir}/dir || : + fi fi %files @@ -89,6 +93,9 @@ fi %{_infodir}/gzip.info* %changelog +* Tue Aug 11 2009 Ivana Varekova - 1.3.12-11 +- fix installation with --excludedocs option (#515975) + * Fri Jul 24 2009 Fedora Release Engineering - 1.3.12-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild