~cmiller/ubuntu/trusty/icewm/translations-cause-crash-lp447883

« back to all changes in this revision

Viewing changes to debian/icewm.preinst

  • Committer: Bazaar Package Importer
  • Author(s): Jerome Marant
  • Date: 2002-03-23 13:06:05 UTC
  • Revision ID: james.westby@ubuntu.com-20020323130605-qvzaillwdk3j8x24
Tags: 1.0.9.2-7
* Integrated more fixes from Julien Lemoine:
  - Improved again window position patch.
    Closes: Bug#138784, Bug#126214.
  - Improved patch fixing taskbar display in hide mode. Closes: Bug#139426.
  - Fixed non-functional logout entry in icewm-lite. Closes: Bug#130466.
* Applied patch from Rob Funk fixing the broken POP3 mailcheck with
  some servers. Closes: Bug#139401.
* Applied patch removing src/.targets when cleaning so targets are
  calculated for each icewm flavour. Closes: Bug#139370.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
 
 
3
case "$1" in
 
4
    install|upgrade)
 
5
        if [ -n "$2" ] && dpkg --compare-versions "$2" lt "1.0.8.6-1"
 
6
        then
 
7
            if [ -d /usr/share/doc/icewm ]; then
 
8
                mv /usr/share/doc/icewm \
 
9
                /usr/share/doc/icewm.moved-by-preinst
 
10
            fi
 
11
        fi
 
12
    ;;
 
13
esac
 
14
 
 
15
 
 
16
#DEBHELPER#
 
17
 
 
18
exit 0
 
19