diff options
author | Bill Nottingham <notting@redhat.com> | 1999-11-30 17:53:43 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-11-30 17:53:43 +0000 |
commit | 78305f0ddba3e50c0a6af9716573b76aef90308a (patch) | |
tree | 891a591fd26ee88c0334b35db20a6c478f267343 | |
parent | cecbee51c4b6b2192c3bac1d1d90146981f99328 (diff) | |
download | initscripts-78305f0ddba3e50c0a6af9716573b76aef90308a.tar initscripts-78305f0ddba3e50c0a6af9716573b76aef90308a.tar.gz initscripts-78305f0ddba3e50c0a6af9716573b76aef90308a.tar.bz2 initscripts-78305f0ddba3e50c0a6af9716573b76aef90308a.tar.xz initscripts-78305f0ddba3e50c0a6af9716573b76aef90308a.zip |
*** empty log message ***
-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. */ |