12ace9b
#!/bin/sh -efu
12ace9b
# Force creating of DSO symlinks.
12ace9b
12ace9b
# If using normal root, avoid changing anything.
12ace9b
if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
12ace9b
  exit 0
12ace9b
fi
12ace9b
98ffd50
# Create an empty config file for ldconfig to shut up a warning
98ffd50
config=$(mktemp -p "$RPM_BUILD_ROOT")
98ffd50
/sbin/ldconfig -f $(basename "$config") -N -r "$RPM_BUILD_ROOT"
98ffd50
rm -f "$config"
12ace9b
# TODO: warn if it created new symlinks and guide people.