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

Diff for /src/share/termtypes/Makefile between version 1.12 and 1.13

version 1.12, 2000/01/09 06:02:42 version 1.13, 2000/01/12 16:37:48
Line 15 
Line 15 
             > ${.TARGET}              > ${.TARGET}
         @if [ ! -s ${.TARGET} ]; then \          @if [ ! -s ${.TARGET} ]; then \
             echo ${.TARGET} is zero length!  You need to update /usr/bin/tic ;\              echo ${.TARGET} is zero length!  You need to update /usr/bin/tic ;\
               rm -f ${.TARGET} ;\
             exit 1 ;\              exit 1 ;\
           else case `sed 1q ${.TARGET}` in \
               Usage*) echo ${.TARGET} is corrupt!  You need to update /usr/bin/tic ;\
                       rm -f ${.TARGET} ;\
                       exit 1 ;;\
               esac ;\
         fi          fi
   
 terminfo.db: terminfo.src  terminfo.db: terminfo.src
Line 28 
Line 34 
             > ${.TARGET}              > ${.TARGET}
         @if [ ! -s ${.TARGET} ]; then \          @if [ ! -s ${.TARGET} ]; then \
             echo ${.TARGET} is zero length!  You need to update /usr/bin/tic ;\              echo ${.TARGET} is zero length!  You need to update /usr/bin/tic ;\
               rm -f ${.TARGET} ;\
             exit 1 ;\              exit 1 ;\
           else case `sed 1q ${.TARGET}` in \
               Usage*) echo ${.TARGET} is corrupt!  You need to update /usr/bin/tic ;\
                       rm -f ${.TARGET} ;\
                       exit 1 ;;\
               esac ;\
         fi          fi
   
 termcap.db: termcap.src  termcap.db: termcap.src

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13