#!/bin/sh

# Remove data files that had been put in place by sp_1.1.1-2

if [ -L /usr/lib/sgml/catalog ]; then
        rm -f /usr/lib/sgml/catalog
fi

if [ -d /usr/lib/sgml/IETF ]; then
	rm -rf /usr/lib/sgml/IETF
fi

if [ -d /usr/lib/sgml/ISO_8879:1986 ]; then
	rm -rf /usr/lib/sgml/ISO_8879:1986
fi

if [ -d /usr/lib/sgml/W3C ]; then
	rm -rf /usr/lib/sgml/W3C 
fi

if [ -d /usr/lib/sgml/dtd ]; then
	rm -rf /usr/lib/sgml/dtd
fi

if [ -d /usr/lib/sgml/entities ]; then
	rm -rf /usr/lib/sgml/entities
fi

if [ -L /usr/lib/sgml/ISO_9979-1986 ]; then
        rm -f /usr/lib/sgml/ISO_8879-1986
fi

