common/wrappers/ldconfig.sh: pass through -p.
Some silly configure scripts use this.
This commit is contained in:
parent
494b134afd
commit
37309e0bbc
|
@ -1,4 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$1" = "-p" ]; then
|
||||
exec /usr/bin/ldconfig "$@"
|
||||
fi
|
||||
|
||||
echo "ldconfig-wrapper: ignoring arguments: $@"
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue