Don't require /usr/lib/aout to be on the system. Test for its
existance since we don't generally need it. MFC after: 1 week
This commit is contained in:
parent
c305730dc0
commit
212dfb3236
@ -66,8 +66,8 @@ ldconfig_start()
|
||||
i386)
|
||||
# Default the a.out ldconfig path.
|
||||
: ${ldconfig_paths_aout=${ldconfig_paths}}
|
||||
_LDC=/usr/lib/aout
|
||||
for i in ${ldconfig_paths_aout} /etc/ld.so.conf; do
|
||||
_LDC=""
|
||||
for i in /usr/lib/aout ${ldconfig_paths_aout} /etc/ld.so.conf; do
|
||||
if [ -r "${i}" ]; then
|
||||
_LDC="${_LDC} ${i}"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user