]> git.pld-linux.org Git - packages/icedove.git/commitdiff
- copy cleanup from iceweasel
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 25 Aug 2010 20:24:54 +0000 (20:24 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    icedove.sh -> 1.6

icedove.sh

index dde3a013f583c737c9c3e4ae3dff1a7aa05eceed..f987d0e24720054110f9305ff89b83af8dd47c60 100644 (file)
@@ -12,6 +12,15 @@ if [ ! -d $HOME/.icedove ]; then
        fi
 fi
 
+# compreg.dat and/or chrome.rdf will screw things up if it's from an
+# older version.  http://bugs.gentoo.org/show_bug.cgi?id=63999
+for f in ~/.icedove/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
+       if [[ -f ${f} && ${f} -ot "$0" ]]; then
+               echo "Removing ${f} leftover from older Icedove"
+               rm -f "${f}"
+       fi
+done
+
 ICEDOVE="$LIBDIR/icedove"
 
 if [ "$1" == "-remote" ]; then
This page took 0.039383 seconds and 4 git commands to generate.