Simplify symlinks on include files by using bmake's multivariable .for loops
This commit is contained in:
parent
b7bcf4a7d1
commit
e432526cab
@ -77,15 +77,10 @@ _${group}INS: ${_${group}INCS}
|
||||
|
||||
.if defined(INCSLINKS) && !empty(INCSLINKS)
|
||||
installincludes:
|
||||
@set ${INCSLINKS}; \
|
||||
while test $$# -ge 2; do \
|
||||
l=$$1; \
|
||||
shift; \
|
||||
t=${DESTDIR}$$1; \
|
||||
shift; \
|
||||
${ECHO} $$t -\> $$l; \
|
||||
${INSTALL_SYMLINK} $$l $$t; \
|
||||
done; true
|
||||
.for s t in ${INCSLINKS}
|
||||
@${ECHO} "$t -> $s" ; \
|
||||
${INSTALL_SYMLINK} $s ${DESTDIR}$t
|
||||
.endfor
|
||||
.endif
|
||||
.endif # !target(installincludes)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user