view debian/postrm @ 23878:e64c59f73527

Set -vo gl slice-height default to 0, the current default of 4 seems to never be much faster, but there were multiple reports where it was a lot slower (mostly those where gl2 was faster).
author reimar
date Sat, 28 Jul 2007 22:54:08 +0000
parents 02309ce6fc22
children
line wrap: on
line source

#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	if [ -e /usr/share/debconf/confmodule ]; then
		# Source debconf library.
		. /usr/share/debconf/confmodule
		# Remove my changes to the db.
		db_purge
	fi

	if [ -d /etc/mplayer/ ]; then
		rm -rf /etc/mplayer/
	fi
fi

#DEBHELPER#