Fix style and remove excess / for installing SYMLINKS.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2016-02-04 01:08:51 +00:00
parent 5f3a77a594
commit 5e13851e18
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295230
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ _${group}INS: ${_${group}INCS}
.if defined(INCSLINKS) && !empty(INCSLINKS)
installincludes:
.for s t in ${INCSLINKS}
${INSTALL_SYMLINK} $s ${DESTDIR}$t
${INSTALL_SYMLINK} ${s} ${DESTDIR}${t}
.endfor
.endif
.endif # !target(installincludes)

View File

@ -8,8 +8,8 @@ afterinstall: _installlinks
.ORDER: realinstall _installlinks
_installlinks:
.for s t in ${LINKS}
${INSTALL_LINK} ${DESTDIR}$s ${DESTDIR}$t
${INSTALL_LINK} ${DESTDIR}${s} ${DESTDIR}${t}
.endfor
.for s t in ${SYMLINKS}
${INSTALL_SYMLINK} $s ${DESTDIR}/$t
${INSTALL_SYMLINK} ${s} ${DESTDIR}${t}
.endfor