[BACK]Return to bsd.prog.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/bsd.prog.mk between version 1.27 and 1.28

version 1.27, 2001/07/20 19:48:26 version 1.28, 2001/07/20 23:02:21
Line 141 
Line 141 
   
 install: maninstall _SUBDIRUSE  install: maninstall _SUBDIRUSE
 .if defined(LINKS) && !empty(LINKS)  .if defined(LINKS) && !empty(LINKS)
         @set ${LINKS}; \  .  for lnk file in ${LINKS}
         while test $$# -ge 2; do \          @l=${DESTDIR}${lnk}; \
                 l=${DESTDIR}$$1; \           t=${DESTDIR}${file}; \
                 shift; \           echo $$t -\> $$l; \
                 t=${DESTDIR}$$1; \           rm -f $$t; ln $$l $$t
                 shift; \  .  endfor
                 echo $$t -\> $$l; \  
                 rm -f $$t; \  
                 ln $$l $$t; \  
         done; true  
 .endif  .endif
   
 maninstall: afterinstall  maninstall: afterinstall

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28