summaryrefslogtreecommitdiffstats
path: root/etc/rc.d
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.d')
-rwxr-xr-xetc/rc.d/ldconfig20
1 files changed, 8 insertions, 12 deletions
diff --git a/etc/rc.d/ldconfig b/etc/rc.d/ldconfig
index f88e918..6723cd4 100755
--- a/etc/rc.d/ldconfig
+++ b/etc/rc.d/ldconfig
@@ -23,18 +23,14 @@ ldconfig_start()
ldconfig=${ldconfig_command}
checkyesno ldconfig_insecure && ldconfig="${ldconfig} -i"
if [ -x "${ldconfig_command}" ]; then
- case `/usr/bin/objformat` in
- elf)
- _LDC=/usr/lib
- for i in ${ldconfig_paths}; do
- if [ -d "${i}" ]; then
- _LDC="${_LDC} ${i}"
- fi
- done
- echo 'ELF ldconfig path:' ${_LDC}
- ${ldconfig} -elf ${_LDC}
- ;;
- esac
+ _LDC=/usr/lib
+ for i in ${ldconfig_paths}; do
+ if [ -d "${i}" ]; then
+ _LDC="${_LDC} ${i}"
+ fi
+ done
+ echo 'ELF ldconfig path:' ${_LDC}
+ ${ldconfig} -elf ${_LDC}
# Legacy aout support for i386 only
case `sysctl -n hw.machine_arch` in
OpenPOWER on IntegriCloud