diff options
| author | Christopher Aillon <caillon@fedoraproject.org> | 2005-03-28 10:56:12 +0000 |
|---|---|---|
| committer | Christopher Aillon <caillon@fedoraproject.org> | 2005-03-28 10:56:12 +0000 |
| commit | e91f7bc5aae4790cc372b64a8e51162ed8652b2b (patch) | |
| tree | 0563b1149266cd56f23a3444d07c4c3ad3558b6e | |
| parent | aac9a94d272b584a3ec311cb9d8f84c9bbfd249a (diff) | |
Fix if check in specfiles.gnome-applets-2_10_0-3
| -rw-r--r-- | gnome-applets.spec | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnome-applets.spec b/gnome-applets.spec index 2453467..baece9e 100644 --- a/gnome-applets.spec +++ b/gnome-applets.spec @@ -18,7 +18,7 @@ Summary: Small applications for the GNOME panel. Name: gnome-applets Version: 2.10.0 -Release: 2 +Release: 3 Epoch: 1 License: GPL Group: User Interface/Desktops @@ -105,7 +105,7 @@ rm -rf $RPM_BUILD_ROOT /sbin/ldconfig scrollkeeper-update 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 @@ -121,7 +121,7 @@ done %postun -p /sbin/ldconfig 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 @@ -151,6 +151,9 @@ fi %{_libdir}/pkgconfig/gswitchit.pc %changelog +* Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com> +- rebuilt + * Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 2.10.0-2 - Update the GTK+ theme icon cache on (un)install |
