#!/bin/sh
#
#ident  "@(#)r.fontsdir 1.2 00/07/31 SMI"
#
# Copyright (c) 1993 by Sun Microsystems, Inc.
#

# Remove the fonts.dir files.
#	Because none class is removed last, font files aren't
#	removed when it is invoked. If mkfondir exists they 
#	should be updated by each pkg postremove script.

while read dst
do
	rm -f $dst
done

exit 0
