#!/bin/sh
#
#pragma ident	"@(#)preremove	1.2	99/07/18 SMI"
#
# Copyright (c) 1992-1999 by Sun Microsystems, Inc.
# All rights reserved.
#
#	remove the libcrypt.* symlinks
#

if [ -h $BASEDIR/usr/lib/libcrypt.so ]; then
     rm -f $BASEDIR/usr/lib/libcrypt.so
fi

if [ -f $BASEDIR/usr/lib/libcrypt.so.1 ]; then
     rm -f $BASEDIR/usr/lib/libcrypt.so.1
fi

exit 0
