diff --git a/common/wrappers/ldconfig.sh b/common/wrappers/ldconfig.sh index f8392bd0178..32818e27ed7 100644 --- a/common/wrappers/ldconfig.sh +++ b/common/wrappers/ldconfig.sh @@ -1,4 +1,8 @@ #!/bin/sh +if [ "$1" = "-p" ]; then + exec /usr/bin/ldconfig "$@" +fi + echo "ldconfig-wrapper: ignoring arguments: $@" exit 0