Re-remove excess / for installing SYMLINKS

This excess / was introduced in r280129, and fixed in r295230, but got
re-introduced while merging another branch in r298107.

Approved by:	gjb
Differential Revision:	https://reviews.freebsd.org/D11995
This commit is contained in:
Li-Wen Hsu 2017-08-12 18:11:41 +00:00
parent ef764b4b8e
commit 229d577fe8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=322434

View File

@ -20,5 +20,5 @@ _installlinks:
.endfor
.for s t in ${SYMLINKS}
@${ECHO} "${t} -> ${s}" ;\
${INSTALL_SYMLINK} ${TAG_ARGS} ${s} ${DESTDIR}/${t}
${INSTALL_SYMLINK} ${TAG_ARGS} ${s} ${DESTDIR}${t}
.endfor