summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2008-01-03 18:23:11 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2008-01-03 18:23:11 +0000
commit5732aa403f8e2b5977910f2be3a9f8105605f231 (patch)
treed4c754fb9c0fd183aa2667352a932125ece0d63a /firefox.spec
parentupdated to the latest trunk (20080103) (diff)
downloadlibrewolf-fedora-ff-5732aa403f8e2b5977910f2be3a9f8105605f231.tar.gz
librewolf-fedora-ff-5732aa403f8e2b5977910f2be3a9f8105605f231.tar.bz2
librewolf-fedora-ff-5732aa403f8e2b5977910f2be3a9f8105605f231.zip
update scriptlets based on the latest blessed versions
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 07fd425..8a7810b 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -255,14 +255,14 @@ touch $RPM_BUILD_ROOT/%{mozappdir}/components/xpti.dat
#---------------------------------------------------------------------
%post
-update-desktop-database %{_datadir}/applications
+update-desktop-database &> /dev/null || :
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
-update-desktop-database %{_datadir}/applications
+update-desktop-database &> /dev/null || :
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
bgstack15