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

Diff for /src/etc/rc between version 1.25 and 1.26

version 1.25, 1996/09/23 13:06:36 version 1.26, 1996/10/09 07:13:30
Line 297 
Line 297 
   
 if [ -f /sbin/ldconfig ]; then  if [ -f /sbin/ldconfig ]; then
         echo 'creating runtime link editor directory cache.'          echo 'creating runtime link editor directory cache.'
         ldconfig /usr/local/lib /usr/X11R6/lib          _LIBS=
           if [ -d /usr/local/lib ]; then
                   _LIBS="$_LIBS /usr/local/lib"
           fi
           if [ -d /usr/X11R6/lib ]; then
                   _LIBS="$_LIBS /usr/X11R6/lib"
           fi
           ldconfig $_LIBS
 fi  fi
   
 # Kerberos runs ONLY on the Kerberos server machine  # Kerberos runs ONLY on the Kerberos server machine

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26