~ubuntu-branches/ubuntu/lucid/mesa/lucid

« back to all changes in this revision

Viewing changes to debian/libgl1-mesa-dri.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Timo Aaltonen, Timo Aaltonen, Rolf Leggewie
  • Date: 2010-03-02 17:11:31 UTC
  • mfrom: (3.3.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100302171131-gf6gvuqrhzoq8c8e
Tags: 7.7-4ubuntu1
[Timo Aaltonen]
* libgl1-mesa-dri: Get rid of the old hook (65mesa-check-x86-64).
  (LP: #460809)

[Rolf Leggewie]
* debian/control: depend on dpkg package where u-a supports --force
  (LP: #525592)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
THIS_PACKAGE=libgl1-mesa-dri
 
6
THIS_SCRIPT=postinst
 
7
 
 
8
case "$1" in
 
9
configure)
 
10
  if dpkg --compare-versions "$2" lt-nl "7.7-4ubuntu1"; then
 
11
    rm -f /etc/X11/Xsession.d/65mesa-check-x86-64
 
12
  fi
 
13
esac
 
14
 
 
15
#DEBHELPER#
 
16
 
 
17
exit 0
 
18
 
 
19
# vim:set ai et sw=2 ts=2 tw=80:
 
20