From dc5673dbd55260f641f45aef8c32d18d7050dbdd Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 19 Jul 2023 10:45:49 +0000 Subject: [PATCH] find-provides: Only handle shared objects The previous pattern matched other files like "*.socket". Fixes: #13027 - Pakfire thinks .socket files are .so files Signed-off-by: Michael Tremer --- src/scripts/find-provides | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/find-provides b/src/scripts/find-provides index 702018625..0f0b003f6 100644 --- a/src/scripts/find-provides +++ b/src/scripts/find-provides @@ -110,7 +110,7 @@ main() { ;; # Shared objects - *.so*) + *.so|*.so.*) # Skip symlinks if [ -L "${path}" ]; then continue -- 2.39.5