[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / share / termtypes

Diff for /src/share/termtypes/Makefile between version 1.7 and 1.8

version 1.7, 1999/03/05 04:47:44 version 1.8, 1999/03/05 05:08:31
Line 12 
Line 12 
         tic -I ${.ALLSRC} | sed \          tic -I ${.ALLSRC} | sed \
             -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \              -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \
             -e 's,/usr/lib/tabset,/usr/share/tabset,g' \              -e 's,/usr/lib/tabset,/usr/share/tabset,g' \
             > terminfo.src              > ${.TARGET}
           @if [ ! -s ${.TARGET} ]; then \
               echo ${.TARGET} is zero length! ;\
               exit 1 ;\
           fi
   
 terminfo.db: terminfo.src  terminfo.db: terminfo.src
         cap_mkdb -i -f terminfo terminfo.src          cap_mkdb -i -f terminfo terminfo.src
Line 21 
Line 25 
         tic -C ${.ALLSRC} | sed \          tic -C ${.ALLSRC} | sed \
             -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \              -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \
             -e 's,/usr/lib/tabset,/usr/share/tabset,g' \              -e 's,/usr/lib/tabset,/usr/share/tabset,g' \
             > termcap.src              > ${.TARGET}
           @if [ ! -s ${.TARGET} ]; then \
               echo ${.TARGET} is zero length! ;\
               exit 1 ;\
           fi
   
 termcap.db: termcap.src  termcap.db: termcap.src
         cap_mkdb -f termcap termcap.src          cap_mkdb -f termcap termcap.src

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8