Fix syntax error in icon cache checks.

ubuntu/precise
Colin Watson 15 years ago
parent 4dc9d5f565
commit 1d95d7a709

6
debian/changelog vendored

@ -1,3 +1,9 @@
livecd-rootfs (1.148) UNRELEASED; urgency=low
* Fix syntax error in icon cache checks.
-- Colin Watson <cjwatson@ubuntu.com> Tue, 31 Aug 2010 12:32:32 +0100
livecd-rootfs (1.147) maverick; urgency=low
* Add support for kubuntu-mobile

@ -692,7 +692,7 @@ Pin-Priority: 550
# No point keeping Gnome icon cache around for Kubuntu
if [ "$FS" = "kubuntu" ] || \
[ "$FS" = "kubuntu-netbook" ] || \
[ "$FS" = "kubuntu-mobile"] ; then
[ "$FS" = "kubuntu-mobile" ]; then
rm -f ${ROOT}/usr/share/icons/*/icon-theme.cache
fi

Loading…
Cancel
Save