Imported Debian patch 0.1.0+git20131207+e452e83-0ubuntu12
[deb_libhybris.git] / debian / libhybris.prerm.in
1 #!/bin/sh
2 #
3 # Copyright (C) 2007 Mario Limonciello
4 # Copyright (C) 2009-2011 Canonical Ltd.
5
6 set -e
7
8 PACKAGE_NAME=#DRIVERNAME#
9
10 case "$1" in
11 remove)
12 update-alternatives --remove #DEB_HOST_MULTIARCH#_egl_conf /#LDSOCONF#
13
14 # explicit ldconfig due to alternatives
15 LDCONFIG_NOTRIGGER=y ldconfig
16 ;;
17 esac
18
19 #DEBHELPER#