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

Diff for /src/share/mk/Attic/bsd.lkm.mk between version 1.19 and 1.20

version 1.19, 2003/05/20 22:49:13 version 1.20, 2005/09/15 07:12:18
Line 73 
Line 73 
             ${.CURDIR}/${POSTINSTALL} ${DESTDIR}${LKMDIR}              ${.CURDIR}/${POSTINSTALL} ${DESTDIR}${LKMDIR}
 .endif  .endif
 .endif  .endif
   .if defined(LINKS) && !empty(LINKS)
   .  for lnk file in ${LINKS}
           @l=${DESTDIR}${LKMDIR}${lnk}; \
            t=${DESTDIR}${LKMDIR}${file}; \
            echo $$t -\> $$l; \
            rm -f $$t; ln $$l $$t
   .  endfor
 .endif  .endif
   .endif
   
   
 load:   ${COMBINED}  load:   ${COMBINED}
Line 87 
Line 95 
         modunload -n $(LKM)          modunload -n $(LKM)
   
 install: maninstall _SUBDIRUSE  install: maninstall _SUBDIRUSE
 .if defined(LINKS) && !empty(LINKS)  
         @set ${LINKS}; \  
         while test $$# -ge 2; do \  
                 l=${DESTDIR}${LKMDIR}/$$1; \  
                 shift; \  
                 t=${DESTDIR}${LKMDIR}/$$1; \  
                 shift; \  
                 echo $$t -\> $$l; \  
                 rm -f $$t; \  
                 ln $$l $$t; \  
         done; true  
 .endif  
   
 maninstall: afterinstall  maninstall: afterinstall
 afterinstall: realinstall  afterinstall: realinstall

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20