3cb3054de7
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/redhat-rpm-config#68541612591bce70d6ea46de1f747e6259d71636
14 lines
413 B
Bash
Executable File
14 lines
413 B
Bash
Executable File
#!/bin/sh -efu
|
|
# Force creating of DSO symlinks.
|
|
|
|
# If using normal root, avoid changing anything.
|
|
if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Create an empty config file for ldconfig to shut up a warning
|
|
config=$(mktemp -p "$RPM_BUILD_ROOT")
|
|
/sbin/ldconfig -f $(basename "$config") -N -r "$RPM_BUILD_ROOT"
|
|
rm -f "$config"
|
|
# TODO: warn if it created new symlinks and guide people.
|