Remove use of ${DESTDIR} in target of symbolic link, it makes the link

point to the wrong place.
This commit is contained in:
Rodney W. Grimes 1995-02-14 19:43:09 +00:00
parent d06b2f2908
commit 4a218a6de8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6382

View File

@ -24,6 +24,6 @@ beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
${DESTDIR}${BINDIR}/misc
@rm -f ${DESTDIR}/etc/termcap
ln -s ${DESTDIR}${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
ln -s ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
.include <bsd.prog.mk>