diff options
author | netchild <netchild@FreeBSD.org> | 2006-01-24 18:58:48 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-01-24 18:58:48 +0000 |
commit | b9239b94b7d62fa137c47010e7beb5882085e9a7 (patch) | |
tree | 3df1928a8041e5579af8a93dd853798df82113dc /etc | |
parent | c69e8551782ff17e45b35f8ec902b93f5645919d (diff) | |
download | FreeBSD-src-b9239b94b7d62fa137c47010e7beb5882085e9a7.zip FreeBSD-src-b9239b94b7d62fa137c47010e7beb5882085e9a7.tar.gz |
As a quick fix disable the update of the linux ld.so.cache file, since
currently it grabs some FreeBSD native libs too.
A final solution is under discussion with brooks.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.d/abi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/abi b/etc/rc.d/abi index 567e726..8b00fbb 100644 --- a/etc/rc.d/abi +++ b/etc/rc.d/abi @@ -28,7 +28,7 @@ linux_start() if ! kldstat -v | grep -E 'linux(aout|elf)' > /dev/null; then kldload linux > /dev/null 2>&1 fi - if [ -x /compat/linux/sbin/ldconfig ]; then + if [ -x /compat/linux/sbin/ldconfigDisabled ]; then _tmpdir=`mktemp -d -t linux-ldconfig` /compat/linux/sbin/ldconfig -C ${_tmpdir}/ld.so.cache if ! cmp -s ${_tmpdir}/ld.so.cache /compat/linux/etc/ld.so.cache; then |