common/wrappers/ldconfig.sh: pass through -p.

Some silly configure scripts use this.
This commit is contained in:
Leah Neukirchen 2017-08-28 19:51:41 +02:00
parent 494b134afd
commit 37309e0bbc
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,8 @@
#!/bin/sh
if [ "$1" = "-p" ]; then
exec /usr/bin/ldconfig "$@"
fi
echo "ldconfig-wrapper: ignoring arguments: $@"
exit 0