#!/bin/sh
# glibc post-install: (re)build the loader cache in the target root.
# Runs on the target (apk executes control scripts chrooted at install).
# Absolute path on purpose: glibc installs ldconfig to /sbin (its sbindir
# default); the busybox ldconfig applet is compiled out so nothing shadows
# it, but scripts must never depend on PATH order for this.
exec /sbin/ldconfig
