view debian/postrm @ 20357:3cec4506b350

Provide fallback definition for uint_fast64_t as well. Fixes a compilation problem on glibc 2.0 systems. taken from a patch by Mikulas Patocka, mikulas (at) artax karlin mff cuni cz
author diego
date Sun, 22 Oct 2006 14:45:54 +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#