From 1d95d7a70910ef8c0178eb5ac5d9ed114c22ac27 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 31 Aug 2010 12:33:10 +0100 Subject: [PATCH] Fix syntax error in icon cache checks. --- debian/changelog | 6 ++++++ livecd.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 03990f13..0aa8cc4b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (1.148) UNRELEASED; urgency=low + + * Fix syntax error in icon cache checks. + + -- Colin Watson Tue, 31 Aug 2010 12:32:32 +0100 + livecd-rootfs (1.147) maverick; urgency=low * Add support for kubuntu-mobile diff --git a/livecd.sh b/livecd.sh index 1fdd52d2..254ff131 100755 --- a/livecd.sh +++ b/livecd.sh @@ -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