summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@redhat.com>2011-04-16 09:15:59 -0700
committerChristopher Aillon <caillon@redhat.com>2011-04-16 09:15:59 -0700
commitb7c3ec432927e83e8440c0dcd11d463c61be24b3 (patch)
treed88cbd7374f495e37b3e0f3ce4cd27ffeac43126
parentSimplify the icon install code (diff)
downloadlibrewolf-fedora-ff-b7c3ec432927e83e8440c0dcd11d463c61be24b3.tar.gz
librewolf-fedora-ff-b7c3ec432927e83e8440c0dcd11d463c61be24b3.tar.bz2
librewolf-fedora-ff-b7c3ec432927e83e8440c0dcd11d463c61be24b3.zip
Preserve icon file timestamps
-rw-r--r--firefox.spec4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index b570041..02da00e 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -237,8 +237,8 @@ XULRUNNER_DIR=`pkg-config --variable=libdir libxul | %{__sed} -e "s,%{_libdir},,
for s in 16 22 24 32 48 256; do
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${s}x${s}/apps
- %{__cp} other-licenses/branding/%{name}/default${s}.png \
- $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${s}x${s}/apps/firefox.png
+ %{__cp} -p other-licenses/branding/%{name}/default${s}.png \
+ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${s}x${s}/apps/firefox.png
done
echo > ../%{name}.lang
bgstack15