Fix missing space between [ and -x

This commit is contained in:
Daniel Williams 2005-03-26 15:49:16 +00:00
parent b94c529610
commit 860d84677c
1 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ fi
%post gnome %post gnome
%if %{build_fc4} %if %{build_fc4}
touch --no-create %{_datadir}/icons/hicolor 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 gtk-update-icon-cache %{_datadir}/icons/hicolor
fi fi
%endif %endif
@ -174,7 +174,7 @@ fi
%postun gnome %postun gnome
%if %{build_fc4} %if %{build_fc4}
touch --no-create %{_datadir}/icons/hicolor 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 gtk-update-icon-cache %{_datadir}/icons/hicolor
fi fi
%endif} %endif}