Link libcrypt_p.a to the DES profiled library, if this library is present.

PR:		misc/7759
Submitted by:	Carl Mascott <cmascott@world.std.com>
Reviewed by:	jkh
This commit is contained in:
Joseph Koshy 1999-08-19 06:36:24 +00:00
parent 828b7f4069
commit 193ba4ccca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50045

View File

@ -5,4 +5,9 @@ if [ "`id -u`" != "0" ]; then
exit 1
fi
cat proflibs.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
cd ${DESTDIR:-/}usr/lib
if [ -f libdescrypt_p.a ]
then
ln -f -s libdescrypt_p.a libcrypt_p.a
fi
exit 0