aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael K. Johnson <johnsonm@redhat.com>2002-01-18 16:19:03 +0000
committerMichael K. Johnson <johnsonm@redhat.com>2002-01-18 16:19:03 +0000
commit7fbb60bdc55cdf394e82babf2854e2971eebca5f (patch)
treebd23ce399a53219c63e4b9560af77ea85f4474c4
parentd25012be11f969ab266f7aca0ad537a379160c1f (diff)
downloadinitscripts-7fbb60bdc55cdf394e82babf2854e2971eebca5f.tar
initscripts-7fbb60bdc55cdf394e82babf2854e2971eebca5f.tar.gz
initscripts-7fbb60bdc55cdf394e82babf2854e2971eebca5f.tar.bz2
initscripts-7fbb60bdc55cdf394e82babf2854e2971eebca5f.tar.xz
initscripts-7fbb60bdc55cdf394e82babf2854e2971eebca5f.zip
depmod does not like this reuse of /lib/modulesr6-42
-rw-r--r--initscripts.spec6
-rwxr-xr-xrc.d/rc.sysinit2
2 files changed, 4 insertions, 4 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 1d0ea016..9ac134b7 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: The inittab file and the /etc/init.d scripts.
Name: initscripts
-Version: 6.41
+Version: 6.42
License: GPL
Group: System Environment/Base
Release: 1
@@ -240,8 +240,8 @@ rm -rf $RPM_BUILD_ROOT
%dir /etc/locale/*/LC_MESSAGES
%changelog
-* Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
-- Added support for libredhat-kernel.so.* symlink handling (6.41)
+* Fri Jan 18 2002 Michael K. Johnson <johnsonm@redhat.com>
+- Added support for libredhat-kernel.so.* symlink handling (6.42)
* Tue Oct 16 2001 Bill Nottingham <notting@redhat.com>
- add ifup-ipx back in (#54686)
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index dc4c226f..54cc9be7 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -722,7 +722,7 @@ fi
# We need to deal with cases where there is no library, and we need to
# deal with any version numbers that show up.
shopt -s nullglob
-for library in /lib/modules/$(uname -r)/libredhat-kernel.so* ; do
+for library in /lib/kernel/$(uname -r)/libredhat-kernel.so* ; do
ln -s -f $library /lib/
done
shopt -u nullglob