~ubuntu-branches/ubuntu/trusty/mesa-lts-utopic/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/libgl1-mesa-glx-lts-utopic.prerm.in

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2015-01-06 10:38:32 UTC
  • Revision ID: package-import@ubuntu.com-20150106103832-l04oj8g5lf7yf9xo
Tags: 10.3.2-0ubuntu1~trusty1
Rebuild utopic package for lts-trusty for all archs. (LP: #1400626)

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-glx
 
6
THIS_SCRIPT=prerm
 
7
 
 
8
case "$1" in
 
9
  remove)
 
10
  # Use alternatives to make it easier to switch between Mesa and 3rd party modules
 
11
  update-alternatives --remove ${DEB_HOST_MULTIARCH}_gl_conf /usr/lib/${DEB_HOST_MULTIARCH}/mesa/ld.so.conf
 
12
 
 
13
  # explicit ldconfig due to alternatives
 
14
  ldconfig
 
15
 
 
16
esac
 
17
 
 
18
#DEBHELPER#
 
19
 
 
20
exit 0
 
21
 
 
22
# vim:set ai et sw=2 ts=2 tw=80:
 
23