Fix DESTDIR support

This commit is contained in:
Baptiste Daroussin 2015-03-15 23:40:50 +00:00
parent ba44fb709d
commit 95246f3d83
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=280129

View File

@ -9,9 +9,9 @@ afterinstall: _installlinks
_installlinks:
.for s t in ${LINKS}
@${ECHO} "$t -> $s" ;\
${INSTALL_LINK} $s $t
${INSTALL_LINK} ${DESTDIR}$s ${DESTDIR}$t
.endfor
.for s t in ${SYMLINKS}
@${ECHO} "$t -> $s" ;\
${INSTALL_SYMLINK} $s $t
${INSTALL_SYMLINK} $s ${DESTDIR}/$t
.endfor