From 377c6a71d42b8a545cf579fa7845ce408e29c458 Mon Sep 17 00:00:00 2001 From: millert <> Date: Sun, 30 May 1999 23:20:52 +0000 Subject: [PATCH] Fix typo, '=' not '=='; marc@snafu.org --- src/etc/rc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 368b6145..e944df55 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.98 1999/05/26 08:40:00 jakob Exp $ +# $OpenBSD: rc,v 1.99 1999/05/30 23:20:52 millert Exp $ # System startup script run by init on autoboot # or after single-user. @@ -449,10 +449,10 @@ fi if [ -f /sbin/ldconfig ]; then echo 'creating runtime link editor directory cache.' if [ -d /usr/local/lib ]; then - shlib_dirs=="$shlib_dirs /usr/local/lib" + shlib_dirs="$shlib_dirs /usr/local/lib" fi if [ -d /usr/X11R6/lib ]; then - shlib_dirs=="$shlib_dirs /usr/X11R6/lib" + shlib_dirs="$shlib_dirs /usr/X11R6/lib" fi ldconfig $shlib_dirs fi