Fix syntax error in icon cache checks.

This commit is contained in:
Colin Watson 2010-08-31 12:33:10 +01:00
parent 4dc9d5f565
commit 1d95d7a709
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -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

View File

@ -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