#
# Copyright (c) 1999 by Sun Microsystems, Inc.
# All rights reserved.
#

#ident  "@(#)postremove 1.4 99/08/11 SMI"

KEYLOCALE='ko'
LIBFILES='libolgx.so.103.2 libxview.so.103.2 libdeskset.so.0.2'

if [ -d $BASEDIR/usr/4lib ]; then
cd $BASEDIR/usr/4lib

for file in $LIBFILES
do
	ls -l $file 2> /dev/null | \
		grep "locale/$KEYLOCALE/" >/dev/null 2>&1
	if [ $? = 0 ]; then
		rm -f $file
	fi
done

fi

exit 0
