diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-04-21 01:06:33 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-09-14 03:02:42 +0200 |
commit | 021676614f8faf80943d62294c98deaee433f354 (patch) | |
tree | e9f8534794b18952db5fe86e01d3b46e10bf10b4 /ubuntu/maverick/applications/knutclient | |
parent | 7eab8b938e4bc3785d10334c2e1b563be59f1a7e (diff) | |
download | tde-packaging-021676614f8faf80943d62294c98deaee433f354.tar.gz tde-packaging-021676614f8faf80943d62294c98deaee433f354.zip |
Fix HTML doc install directories on Debian and Ubuntu
(cherry picked from commit 62164e82581ee31097d33bbe9a6da16039b7204f)
Diffstat (limited to 'ubuntu/maverick/applications/knutclient')
-rw-r--r-- | ubuntu/maverick/applications/knutclient/debian/changelog | 2 | ||||
-rw-r--r-- | ubuntu/maverick/applications/knutclient/debian/preinst | 4 |
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 |