From 37309e0bbc557a46f2369cb8fe5900fe648ef720 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Mon, 28 Aug 2017 19:51:41 +0200 Subject: [PATCH] common/wrappers/ldconfig.sh: pass through -p. Some silly configure scripts use this. --- common/wrappers/ldconfig.sh | 4 ++++ 1 file changed, 4 insertions(+) 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