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

« back to all changes in this revision

Viewing changes to debian/icewm-lite.postinst

  • 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
#DEBHELPER#
 
4
 
 
5
if [ "$1" = "configure" ]; then
 
6
    update-alternatives --verbose --install /usr/bin/x-window-manager \
 
7
        x-window-manager /usr/X11R6/bin/icewm-lite 40 \
 
8
        --slave /usr/share/man/man1/x-window-manager.1.gz x-window-manager.1.gz \
 
9
        /usr/X11R6/man/man1/icewm-lite.1x.gz
 
10
 
 
11
fi
 
12
 
 
13
exit 0
 
14