From 424bbbf5f7dda8c43bc6430eb5a4a139631ecc11 Mon Sep 17 00:00:00 2001 From: Christopher Aillon Date: Mar 28 2005 10:56:14 +0000 Subject: Fix if check in specfiles. --- diff --git a/system-config-services.spec b/system-config-services.spec index bff062b..8d6e06c 100644 --- a/system-config-services.spec +++ b/system-config-services.spec @@ -2,7 +2,7 @@ Summary: system-config-services is an initscript and xinetd configuration utility Name: system-config-services Version: 0.8.21 -Release: 2 +Release: 3 URL: http://www.redhat.com/ Source0: %{name}-%{version}.tar.gz License: GPL @@ -43,13 +43,13 @@ rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor -if [-x /usr/bin/gtk-update-icon-cache ]; then +if [ -x /usr/bin/gtk-update-icon-cache ]; then gtk-update-icon-cache %{_datadir}/icons/hicolor fi %postun touch --no-create %{_datadir}/icons/hicolor -if [-x /usr/bin/gtk-update-icon-cache ]; then +if [ -x /usr/bin/gtk-update-icon-cache ]; then gtk-update-icon-cache %{_datadir}/icons/hicolor fi @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_mandir}/*/system-config-services.8* %changelog +* Mon Mar 28 2005 Christopher Aillon +- rebuilt + * Fri Mar 25 2005 Christopher Aillon 0.8.21-2 - Update the GTK+ theme icon cache on (un)install