diff options
author | jkoshy <jkoshy@FreeBSD.org> | 1999-08-19 06:36:24 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 1999-08-19 06:36:24 +0000 |
commit | 1d080a921df256e9284759efb8749c36e1a03616 (patch) | |
tree | b2bfa191b80f08d6d6a78475de72082147d0aa0b /release | |
parent | ad6f988e41b41851ab621398e512fca5e59e62b7 (diff) | |
download | FreeBSD-src-1d080a921df256e9284759efb8749c36e1a03616.zip FreeBSD-src-1d080a921df256e9284759efb8749c36e1a03616.tar.gz |
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
Diffstat (limited to 'release')
-rwxr-xr-x | release/scripts/proflibs-install.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/proflibs-install.sh b/release/scripts/proflibs-install.sh index ce410e3..fa67ec7 100755 --- a/release/scripts/proflibs-install.sh +++ b/release/scripts/proflibs-install.sh @@ -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 |