14 lines
274 B
Bash
14 lines
274 B
Bash
#!/bin/sh
|
|
|
|
DISTRIBUTION="${distribution}"
|
|
|
|
case "$1" in
|
|
remove)
|
|
[ "Ubuntu" = "$DISTRIBUTION" ] && update-alternatives --remove ${DEB_HOST_MULTIARCH}_egl_conf /usr/lib/${DEB_HOST_MULTIARCH}/${private_dir}/ld.so.conf
|
|
LDCONFIG_NOTRIGGER=y ldconfig
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|