Fix style and remove excess / for installing SYMLINKS.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
bdrewery 2016-02-04 01:08:51 +00:00
parent 798fceb2c1
commit c848707b79
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