diff options
author | bde <bde@FreeBSD.org> | 1998-09-02 15:09:15 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-09-02 15:09:15 +0000 |
commit | 3e4c6e97f3eb3b6d30e8a399a9d3c39d7beba5e8 (patch) | |
tree | c1a9203011fb04e7085142f4b9b44a722e1f9059 /lib/libcrypt | |
parent | c177840e1da5afd6933f94e0553de62e2bfbc966 (diff) | |
download | FreeBSD-src-3e4c6e97f3eb3b6d30e8a399a9d3c39d7beba5e8.zip FreeBSD-src-3e4c6e97f3eb3b6d30e8a399a9d3c39d7beba5e8.tar.gz |
Fixed the elf case of the creation of the libcrypt.so -> libscrypt->so
link. Shared libraries are in ${SHLIBDIR}, not necessarily in ${LIBDIR}.
Diffstat (limited to 'lib/libcrypt')
-rw-r--r-- | lib/libcrypt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index 1ad2b9a..62c55e6 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.12 1998/08/30 01:48:55 jb Exp $ +# $Id: Makefile,v 1.13 1998/08/30 02:43:45 jb Exp $ # LCRYPTBASE= libcrypt @@ -35,7 +35,7 @@ afterinstall: fi .endif .if !defined(NOPIC) && ${OBJFORMAT} == elf - @cd ${DESTDIR}${LIBDIR}; \ + @cd ${DESTDIR}${SHLIBDIR}; \ if [ ! -e ${LCRYPTBASE}.so ]; then \ rm -f ${LCRYPTBASE}.so; \ ln -s ${LSCRYPTBASE}.so libcrypt.so; \ |