Imported Debian patch 0.1.0+git20131207+e452e83-0ubuntu12
[deb_libhybris.git] / debian / libhybris.prerm.in
CommitLineData
4395b8c4
RSA
1#!/bin/sh
2#
3# Copyright (C) 2007 Mario Limonciello
4# Copyright (C) 2009-2011 Canonical Ltd.
5
6set -e
7
8PACKAGE_NAME=#DRIVERNAME#
9
10case "$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 ;;
17esac
18
19#DEBHELPER#