#!/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.a symlink
#

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

exit 0
