Stop hiding link install commands.
This is no longer needed now that a .for loop is used rather than inline shell script. Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
9508a0e1fe
commit
d341613006
@ -80,7 +80,6 @@ _${group}INS: ${_${group}INCS}
|
||||
.if defined(INCSLINKS) && !empty(INCSLINKS)
|
||||
installincludes:
|
||||
.for s t in ${INCSLINKS}
|
||||
@${ECHO} "$t -> $s" ; \
|
||||
${INSTALL_SYMLINK} $s ${DESTDIR}$t
|
||||
.endfor
|
||||
.endif
|
||||
|
@ -8,10 +8,8 @@ afterinstall: _installlinks
|
||||
.ORDER: realinstall _installlinks
|
||||
_installlinks:
|
||||
.for s t in ${LINKS}
|
||||
@${ECHO} "$t -> $s" ;\
|
||||
${INSTALL_LINK} ${DESTDIR}$s ${DESTDIR}$t
|
||||
.endfor
|
||||
.for s t in ${SYMLINKS}
|
||||
@${ECHO} "$t -> $s" ;\
|
||||
${INSTALL_SYMLINK} $s ${DESTDIR}/$t
|
||||
.endfor
|
||||
|
Loading…
Reference in New Issue
Block a user