Install shared libraries in ${SHLIBDIR} instead of in ${LIBDIR}.

Add missing ${DESTDIR}'s.
This commit is contained in:
Bruce Evans 1994-11-14 06:45:23 +00:00
parent 643c00317e
commit ff8189b3f8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4455

View file

@ -7,13 +7,13 @@ SRCS= termcap.c tgoto.c tputs.c
MAN3= termcap.3
MLINKS= termcap.3 tgetent.3 termcap.3 tgetflag.3 termcap.3 tgetnum.3 \
termcap.3 tgetstr.3 termcap.3 tgoto.3 termcap.3 tputs.3
LINKS= ${LIBDIR}/libtermcap.a ${LIBDIR}/libtermlib.a
LINKS= ${DESTDIR}${LIBDIR}/libtermcap.a ${DESTDIR}${LIBDIR}/libtermlib.a
.if !defined(NOPIC)
LINKS+= ${LIBDIR}/libtermcap.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
${LIBDIR}/libtermlib.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
LINKS+= ${DESTDIR}${SHLIBDIR}/libtermcap.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
${DESTDIR}${SHLIBDIR}/libtermlib.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
.endif
.if !defined(NOPROFILE)
LINKS+= ${LIBDIR}/libtermcap_p.a ${LIBDIR}/libtermlib_p.a
LINKS+= ${DESTDIR}${LIBDIR}/libtermcap_p.a ${DESTDIR}${LIBDIR}/libtermlib_p.a
.endif
.include <bsd.lib.mk>