summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/applications/knutclient
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/maverick/applications/knutclient')
-rw-r--r--ubuntu/maverick/applications/knutclient/debian/changelog2
-rw-r--r--ubuntu/maverick/applications/knutclient/debian/preinst4
2 files changed, 3 insertions, 3 deletions
diff --git a/ubuntu/maverick/applications/knutclient/debian/changelog b/ubuntu/maverick/applications/knutclient/debian/changelog
index 5788cd153..e63f05435 100644
--- a/ubuntu/maverick/applications/knutclient/debian/changelog
+++ b/ubuntu/maverick/applications/knutclient/debian/changelog
@@ -214,7 +214,7 @@ knutclient (0.7.2-pre2-1) unstable; urgency=low
* New upstream release
* admin/debianrules has been updated to fix KDE doc path
problems (thanks to Ben Burton) (closes: Bug#210962)
- * debian/preinst: add script for cleaning /usr/share/doc/HTML/*/knutclient/
+ * debian/preinst: add script for cleaning /usr/share/doc/tde/HTML/*/knutclient/
on upgrading from previous release
* debian/control: add Homepage to Description
* debian/control: change maintainer address to the good debian's one
diff --git a/ubuntu/maverick/applications/knutclient/debian/preinst b/ubuntu/maverick/applications/knutclient/debian/preinst
index 7cf5218d6..17d2ead82 100644
--- a/ubuntu/maverick/applications/knutclient/debian/preinst
+++ b/ubuntu/maverick/applications/knutclient/debian/preinst
@@ -20,13 +20,13 @@ case "$1" in
# cleanup remaining doc from release prior to 0.7.2
if dpkg --compare-versions "$2" lt "0.7.2" ; then
# first pass for files
- for i in `find /usr/share/doc/HTML/*/knutclient/ -type f`
+ for i in `find /usr/share/doc/tde/HTML/*/knutclient/ -type f`
do
rm -f $i
done
# second pass for directories and empty parents
- for i in `find /usr/share/doc/HTML/*/knutclient/ -type d`
+ for i in `find /usr/share/doc/tde/HTML/*/knutclient/ -type d`
do
rmdir --ignore-fail-on-non-empty --parents $i
done