#!/bin/sh
#
#
#  File:       r.OWconfig
#  Project:    XIL
#  Revision:   1.3
#  Last Mod:   13:16:47, 05/31/96
#
#  Description
#
# Removal script for the server class
# Remove any entries that belong to this package
#
#
#       @(#)r.OWconfig	1.3  96/05/31 (c)  Sun Microsystems, Inc.
#
while read src
do
	if [ -w $src ]; then
		cp $src /tmp/OWconfig || exit 2
		sed -e "/# XIL Extensions - Start/,/# XIL 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
