diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +1999-11-30 Bill Nottingham <notting@redhat.com> + + * initscripts.spec: + fix modutils dependencies + 1999-11-29 Bill Nottingham <notting@redhat.com> * rc.d/rc.sysinit: diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index dc601ed1..97825fd2 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -507,7 +507,7 @@ else UP="1" fi OLDSMP=`grep "#define __BOOT_KERNEL_SMP" /boot/kernel.h 2>/dev/null | awk '{ print $3 }'` -OLDUP=`grep "#define __BOOT_KERNEL_UP" /boot/kernel.h 2>/dev/null | awk '{ print $3}'` +OLDUP=`grep "#define __BOOT_KERNEL_UP" /boot/kernel.h 2>/dev/null | awk '{ print $3 }'` if [ "$SMP" != "$OLDSMP" -o "$UP" != "$OLDUP" ]; then cat > /boot/kernel.h << EOF /* This file is automatically generated at boot time. */ |