#
# Copyright 1994-2003 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#pragma ident	"@(#)postinstall	1.5	03/01/03 SMI"
#
#	install the libcrypt symlink
#

# make the symlink
#
if [ ! -h $BASEDIR/usr/lib/libcrypt.a -a -f $BASEDIR/usr/lib/libcrypt_i.a ]
then
	ln -s libcrypt_i.a $BASEDIR/usr/lib/libcrypt.a || exit 2
fi

exit 0
