From 5b4216832dc9d7bf151c2c548e7d7082b01d4db0 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 22 Dec 2011 01:07:36 +0100 Subject: [PATCH] Skip python shared objects in provides lists. --- tools/find-provides | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/find-provides b/tools/find-provides index 1b8f92ad0..64603286d 100755 --- a/tools/find-provides +++ b/tools/find-provides @@ -17,6 +17,9 @@ while read file; do */lib/ld.so) # Just ignore this file. ;; + */usr/lib*/python*/*.so) + # Do not show python shared objects in provides list. + ;; *.so*) binary_files="${binary_files} ${file}" ;; -- 2.39.5