# Remove libGL.so symlinks.
case ${ACTION} in
post)
	if [ -h usr/lib/libGL.so ]; then
		rm -f usr/lib/libGL.so
	fi
	if [ -h usr/lib/libGL.so.1 ]; then
		rm -f usr/lib/libGL.so.1
	fi
	;;
esac