From 70ced86f9b1779b30aaea09038e80c2c047e1c1f 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-rootpassword.spec b/system-config-rootpassword.spec index bace65a..8facdc0 100644 --- a/system-config-rootpassword.spec +++ b/system-config-rootpassword.spec @@ -1,7 +1,7 @@ Summary: A graphical interface for modifying the rootpassword Name: system-config-rootpassword Version: 1.1.6 -Release: 2 +Release: 3 URL: http://fedora.redhat.com/ License: GPL ExclusiveOS: Linux @@ -45,7 +45,7 @@ rm -rf $RPM_BUILD_ROOT %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 @@ -56,7 +56,7 @@ 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 @@ -79,6 +79,9 @@ fi %attr(0644,root,root) %config /etc/pam.d/system-config-rootpassword %changelog +* Mon Mar 28 2005 Christopher Aillon +- rebuilt + * Fri Mar 25 2005 Christopher Aillon 1.1.6-2 - Update the GTK+ theme icon cache on (un)install