Browse Source

pullup

OPENBSD_2_0
deraadt 28 years ago
parent
commit
ce77b22ca4
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      src/etc/rc

+ 9
- 2
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.25 1996/09/23 13:06:36 deraadt Exp $
# $OpenBSD: rc,v 1.25.2.1 1996/10/11 23:00:18 deraadt Exp $
# System startup script run by init on autoboot # System startup script run by init on autoboot
# or after single-user. # or after single-user.
@ -297,7 +297,14 @@ rm -f $T
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


Loading…
Cancel
Save