[BACK]Return to sets.subr CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / distrib / sets

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

Diff for /src/distrib/sets/sets.subr between version 1.76 and 1.77

version 1.76, 2008/11/26 15:45:56 version 1.77, 2008/11/29 17:57:33
Line 403  list_set_files()
Line 403  list_set_files()
 #       stl.stlib  #       stl.stlib
 #       shl.mi  #       shl.mi
 #       shl.shlib  #       shl.shlib
 #       module.mi               if ${module} != no  #       module.mi                       if ${module} != no
   #       module.${MACHINE}               if ${module} != no
   #       module.ad.${MACHINE_ARCH}       if ${module} != no
   # (or)  module.ad.${MACHINE_CPU}        if ${module} != no
 #       rescue.shl  #       rescue.shl
 #       rescue.${MACHINE}  #       rescue.${MACHINE}
 #       rescue.ad.${MACHINE_ARCH}  #       rescue.ad.${MACHINE_ARCH}
Line 457  list_set_lists()
Line 460  list_set_lists()
                 if [ -f $setdir/module.mi ]; then                  if [ -f $setdir/module.mi ]; then
                         echo $setdir/module.mi                          echo $setdir/module.mi
                 fi                  fi
                   if [ -f $setdir/module.${MACHINE} ]; then
                           echo $setdir/module.${MACHINE}
                   fi
                   if [ "${MACHINE}" != "${MACHINE_ARCH}" ]; then
                           # Prefer a module.ad.${MACHINE_ARCH} over a
                           # module.ad.${MACHINE_CPU}, since the arch-
                           # specific one will be more specific than the
                           # cpu-specific one.
                           if [ -f $setdir/module.ad.${MACHINE_ARCH} ]; then
                                   echo $setdir/module.ad.${MACHINE_ARCH}
                           elif [ -f $setdir/module.ad.${MACHINE_CPU} ]; then
                                   echo $setdir/module.ad.${MACHINE_CPU}
                           fi
                   fi
         fi          fi
   
         if [ -f $setdir/rescue.mi ]; then          if [ -f $setdir/rescue.mi ]; then

Legend:
Removed from v.1.76  
changed lines
  Added in v.1.77

CVSweb <webmaster@jp.NetBSD.org>