This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/sh
|
|
|
|
if [ "$1" = "-p" ]; then
|
|
exec /usr/bin/ldconfig "$@"
|
|
fi
|
|
|
|
echo "ldconfig-wrapper: ignoring arguments: $@"
|
|
exit 0
|