Fix style and remove excess / for installing SYMLINKS.
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
798fceb2c1
commit
c848707b79
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user