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

Diff for /src/Makefile between version 1.128 and 1.131

version 1.128, 2016/10/06 16:22:43 version 1.131, 2016/11/19 14:20:58
Line 71 
Line 71 
         @false          @false
 .else  .else
 build:  build:
           umask ${WOBJUMASK}; exec ${MAKE} do-build
   
   do-build:
 .ifdef GLOBAL_AUTOCONF_CACHE  .ifdef GLOBAL_AUTOCONF_CACHE
         cp /dev/null ${GLOBAL_AUTOCONF_CACHE}          cp /dev/null ${GLOBAL_AUTOCONF_CACHE}
 .endif  .endif
         @if [[ `id -u` -ne 0 ]]; then \          @if [[ `id -u` -ne 0 ]]; then \
                 echo 'must be called by root' 2>&1; \                  echo $@ must be called by root >&2; \
                 false; \                  false; \
         fi          fi
         cd ${.CURDIR}/share/mk && exec ${MAKE} install          cd ${.CURDIR}/share/mk && exec ${MAKE} install
         exec ${MAKE} includes  
         exec ${MAKE} cleandir          exec ${MAKE} cleandir
           exec ${MAKE} includes
         cd ${.CURDIR}/lib && \          cd ${.CURDIR}/lib && \
             su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \              su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \
             NOMAN=1 exec ${MAKE} install              NOMAN=1 exec ${MAKE} install

Legend:
Removed from v.1.128  
changed lines
  Added in v.1.131