mirror of
https://github.com/void-linux/void-packages.git
synced 2025-05-26 01:33:49 +02:00
8 lines
124 B
Bash
8 lines
124 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "-p" ]; then
|
|
exec /usr/bin/ldconfig "$@"
|
|
fi
|
|
|
|
echo "ldconfig-wrapper: ignoring arguments: $@"
|
|
exit 0
|