mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
9 lines
124 B
Bash
9 lines
124 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$1" = "-p" ]; then
|
||
|
exec /usr/bin/ldconfig "$@"
|
||
|
fi
|
||
|
|
||
|
echo "ldconfig-wrapper: ignoring arguments: $@"
|
||
|
exit 0
|