[BACK]Return to build.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/build.sh between version 1.333.2.2 and 1.333.2.3

version 1.333.2.2, 2022/02/02 14:23:11 version 1.333.2.3, 2023/03/13 21:38:13
Line 2285  setup_mkrepro()
Line 2285  setup_mkrepro()
                 dirs="$dirs ${X11SRCDIR-/usr/xsrc}/"                  dirs="$dirs ${X11SRCDIR-/usr/xsrc}/"
         fi          fi
   
         local cvslatest=$(print_tooldir_program cvslatest)  
         if [ ! -x "${cvslatest}" ]; then  
                 buildtools  
         fi  
   
         local cvslatestflags=  
         if ${do_expertmode}; then  
                 cvslatestflags=-i  
         fi  
   
         MKREPRO_TIMESTAMP=0          MKREPRO_TIMESTAMP=0
         local d          local d
         local t          local t
         local vcs          local vcs
         for d in ${dirs}; do          for d in ${dirs}; do
                 if [ -d "${d}CVS" ]; then                  if [ -d "${d}CVS" ]; then
                           local cvslatest=$(print_tooldir_program cvslatest)
                           if [ ! -x "${cvslatest}" ]; then
                                   buildtools
                           fi
   
                           local cvslatestflags=
                           if ${do_expertmode}; then
                                   cvslatestflags=-i
                           fi
   
                         t=$("${cvslatest}" ${cvslatestflags} "${d}")                          t=$("${cvslatest}" ${cvslatestflags} "${d}")
                         vcs=cvs                          vcs=cvs
                 elif [ -d "${d}.git" ]; then                  elif [ -d "${d}.git" ]; then

Legend:
Removed from v.1.333.2.2  
changed lines
  Added in v.1.333.2.3

CVSweb <webmaster@jp.NetBSD.org>