#!/bin/sh
#
#       Copyright (c) 1996 Sun Microsystems, Inc.
#               All Rights Reserved
#
#       @(#)r.OWconfig	1.1     96/05/29 (c)  Sun Microsystems, Inc.
#
# Removal script for the OWconfig class
# Remove any entries that belong to this package.
#
while read src
do
	if [ -w $src ]
	then
		cp $src /tmp/OWconfig || exit 2
		sed -e "/# XIL\/Ultra Extensions - Start/,/# XIL\/Ultra Extensions - End/d" \
			/tmp/OWconfig > $src || exit 2
	fi
	if [ ! -s $src ]; then
		echo "No entries in $src, Removing $src"
		rm -f $src
	fi
done
exit 0
