diff options
| author | Mark Murray <markm@FreeBSD.org> | 1999-01-24 07:51:33 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 1999-01-24 07:51:33 +0000 |
| commit | 1b340441b7627402f9fdf8cbfc12dfe69bb2a7d0 (patch) | |
| tree | 4f6e1fa0ba335d22254d4cedc0e3798b211c7f3c /lib/libcrypt/Makefile | |
| parent | a9d022882c74a0e91b249bb32a2d1b2ab8a5e16b (diff) | |
Notes
Diffstat (limited to 'lib/libcrypt/Makefile')
| -rw-r--r-- | lib/libcrypt/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index 20d181b8d003..026da795ecc8 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -31,26 +31,26 @@ afterinstall: @cd ${DESTDIR}${SHLIBDIR}; \ if [ ! -e ${LCRYPTSO} ]; then \ rm -f ${LCRYPTSO}; \ - ln -s ${LSCRYPTSO} ${LCRYPTSO}; \ + ln -sf ${LSCRYPTSO} ${LCRYPTSO}; \ fi .endif .if !defined(NOPIC) && ${OBJFORMAT} == elf @cd ${DESTDIR}${SHLIBDIR}; \ if [ ! -e ${LCRYPTBASE}.so ]; then \ rm -f ${LCRYPTBASE}.so; \ - ln -s ${LSCRYPTBASE}.so libcrypt.so; \ + ln -sf ${LSCRYPTBASE}.so libcrypt.so; \ fi .endif @cd ${DESTDIR}${LIBDIR}; \ if [ ! -e ${LCRYPTBASE}.a ]; then \ rm -f ${LCRYPTBASE}.a; \ - ln -s ${LSCRYPTBASE}.a libcrypt.a; \ + ln -sf ${LSCRYPTBASE}.a libcrypt.a; \ fi .if !defined(NOPROFILE) @cd ${DESTDIR}${LIBDIR}; \ if [ ! -e ${LCRYPTBASE}_p.a ]; then \ rm -f ${LCRYPTBASE}_p.a; \ - ln -s ${LSCRYPTBASE}_p.a libcrypt_p.a; \ + ln -sf ${LSCRYPTBASE}_p.a libcrypt_p.a; \ fi .endif |
